Android之LinearLayout学习

LinearLayout(线性布局)

1.将控件排列为一行或一列,这取决于它的方向orientation 属性设置。线性布局分为水平线性和垂直线性二者的属性分别为: 

android:orientation= " horizontal "  水平线性布局   

android:orientation= "vertical"     竖直线性布局

2.android:gravity作用是控制布局文件中控件的对齐方式。当对没有子控件的控件设置时,此时指的是控件内容相对控件的对齐方式。例子如下:

   <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        

        android:orientation="horizontal" >

 

        <Button

            android:gravity="right|top" //设置为右上方,不会改变控件本身位置

            android:layout_width="150dp"

            android:layout_height="150dp"

            android:text="确定" 

            android:textSize="30sp"

            />

 

        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="取消" />

</LinearLayout>

效果图


当对有子控件的父控件设置时,此时指的是子控件相对于父控件的对齐方式。

<LinearLayout

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:gravity="right" //设置下面的子控件右对齐父控件

        android:orientation="horizontal" >

 

        <Button

            android:gravity="right|top"//设置为右上方,不会改变控件本身位置

            android:layout_width="100dp"

            android:layout_height="100dp"

            android:text="确定" 

            android:textSize="30sp"

            />

 

        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="取消" />

</LinearLayout>

效果图


3.android:layout_weight作用是设定该控件所占整个界面布局的比重。

 <TextView

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_weight="1"

        android:background="#ff1493" />

 

    <TextView

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_weight="1"

        android:background="#b0e0e6" />

注释:总的weight2,两个各占一半。






 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值