layout_weight属性的作用是:用来分配空间,设置该组件所占的权重。
下面我们将编写代码来看layout_weight属性的使用。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/text1"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00ff00"
android:text="@string/hello_world"/>
<TextView
android:id="@+id/text2"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#aaaaaa"
android:text="@string/text"/>
<TextView
android:id="@+id/text3"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:text="@string/hello_world"/>
</LinearLayout>
运行的结果为:
当layout_width为match_parent是,单个组件默认是占据父面板的横向所有的空间,但是运行出来的结果却是三个占一样的比重。这是因为在代码中,我们将三个TextView组件的layout_weight属性都设为1,所以他们的三个在父面板中所占的比重都是一样的。
当我们将三个组件的比重改为1:2:2的时候,运行结果为
这个运行的结果是不是超出我们的预想呢,我们设置的比重是1:2:3,但是运行出来后发现第一个组件占得比重是最大的,第二和第三个组件占得比重一样但是都比第一个小,这是什么原因呢?
当我们三个组件的Layout_width都设置为match_parent时,理论上是需要占三个match_parent大小空间的,但是实际上只有一个match_parent空间的。所以他们的剩余空间应该为(-2)个match_parent空间。
所以对于第一个组件而言,他占的实际空间大小为:match_parent+(-2)*match_parent*所占比重(1/5) = (3/5)match_parent
第二个组件:match_parent+(-2)*match_parent*所占比重(2/5) = (1/5)match_parent
第三个组件:match_parent+(-2)*match_parent*所占比重(2/5) = (1/5)match_parent
所以最后他们所占的比例应该是3:1:1,就是图上显示的结果。