1. android:layout_weight使用说明:
layout_weight是权重的意思,也就是各个控件所占的比重,用在LinearLayout布局中。当我们使用layout_weight的时候,layout_width和layout_height有三种表示方法
2. android:layout_weight使用之 layout_width为0dp:
此时,layout_weight使用的时候要求:layout_height = "0" 或者 layout_width = "0"
比如:只有如下这样layout_weight属性才会生效
(1)android:layout_width = "0dip"
android:layout_weight = ""
(2)android:layout_height = "0dip"
android:layout_weight = ""
下面是一个案例:
首先看看我们的布局需求,如下:
如下布局中上下各占1/2,然后这两个一半,分别如下方式分割为1/3
布局代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmln:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:oritentation="vertical"> <LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:oritentation="horizontal"> <View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#ff0000"
android:layout_weight="1"
/>
<View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#0000ff"
android:layout_weight="1"
/>
<View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#00ff00"
android:layout_weight="1"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:oritentation="vertical"> <View
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#ff00ff"
/>
<View
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#00ffff"
/>
<View
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#ffff00"
/>
</LinearLayout> </LinearLayout>
3. android:layout_weight使用之 layout_width为wrap_content:
我们可以看出,首先他们是先包含自己的内容,然后在剩下的空间中按照weight来划分,即剩下空间按照1:2来划分。
4. android:layout_weight使用之 layout_width为match_parent:
我们可以看出,刚好和第一种layout_width为0dp的布局相反。
4. 以上三种情况到底是怎么回事呢?下面来看一下layout_weight的具体计算方法:
layout_weight的意思:
如果一个控件申明了这个属性,那么这个控件的宽度(高度)等于它原有的长度(宽度或高度)加上剩余空间所占有的比重。
例如:一个假设屏幕的宽度为L.
(1)对于第一种情况:
原有长度都等于0,所以它们的长度就是剩余空间所占有的比重。
第一个button所占有的比重为L*1/(1+2)=1/3L;
第二个button所占有的比重为L*2/(1+2)=2/3L。
(2)对于第三种情况:
原有长度都等于match_parent即等于L,那么剩余空间的长度等于L-(L+L)=-L;
对于第一个button所占有的比重为:-L*1/(1+2)=-1/3L,
对于第二个button所占有的比重为:-L*2/(1+2)=-2/3L,所以它们的总长度等于原有的长度加上剩余空间所占有的比重。
即L+(-1/3L)= 2/3L 和 L+(-2/3L)= 1/3L;
即反过来的2:1就是出现的第三种情况。