近期写Demo。突然发现了Layout_weight这个属性。发现网上有非常多关于这个属性的有意思的讨论。但是找了好多资料都没有找到一个可以说的清楚的,于是自己结合网上资料研究了一下,最终迎刃而解。写出来和大家分享。
首先看一下Layout_weight属性的作用:它是用来分配属于空间的一个属性,你能够设置他的权重。
非常多人不知道剩余空间是个什么概念,以下我先来说说剩余空间。
看以下代码:
- xml version="1.0" encoding="utf-8"?
>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="left"
- android:text="one"/>
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:layout_weight="1.0"
- android:text="two"/>
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="right"
- android:text="three"/>
- LinearLayout>
执行结果是:
看上面代码:仅仅有Button2使用了Layout_weight属性,并赋值为了1,而Button1和Button3没有设置Layout_weight这个属性。依据API,可知,他们默认是0
以下我就来讲,Layout_weight这个属性的真正的意思:Android系统先依照你设置的3个Button高度Layout_height值wrap_content,给你分配好他们3个的高度,
然后会把剩下来的屏幕空间所有赋给Button2,由于仅仅有他的权重值是1,这也是为什么Button2占了那么大的一块空间。
有了以上的理解我们就能够对网上关于Layout_weight这个属性更让人费解的效果有一个清晰的认识了。
我们来看这段代码:
- <?xml version="1.0" encoding="UTF-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <TextView
- android:background="#ff0000"
- android:layout_width="**"
- android:layout_height="wrap_content"
- android:text="1"
- android:textColor="@android:color/white"
- android:layout_weight="1"/>
- <TextView
- android:background="#cccccc"
- android:layout_width="**"
- android:layout_height="wrap_content"
- android:text="2"
- android:textColor="@android:color/black"
- android:layout_weight="2" />
- <TextView
- android:background="#ddaacc"
- android:layout_width="**"
- android:layout_height="wrap_content"
- android:text="3"
- android:textColor="@android:color/black"
- android:layout_weight="3" />
- LinearLayout>
三个文本框的都是 layout_技术分享" class="fit-image" src="https://img.php1.cn/3cd4a/1eebe/cd5/443b30bb45e66690.webp" >
依照上面的理解,系统先给3个TextView分配他们的宽度值wrap_content(宽度足以包括他们的内容1,2,3就可以),然后会把剩下来的屏幕空间依照1:2:3的比列分配给3个textview,所以就出现了上面的图像。
而当layout_技术分享" class="fit-image" src="https://img.php1.cn/3cd4a/1eebe/cd5/617c1173853af4b6.webp" >
你会发现1的权重小,反而分的多了,这是为什么呢???网上非常多人说是当layout_fill_parent"的原因造成的。按照上面理解我们来分析:
系统先给3个textview分配他们所要的宽度fill_parent,也就是说每一都是填满他的父控件,这里就死屏幕的宽度
那么这时候的剩余空间=1个parent_width-3个parent_技术分享" class="fit-image" src="https://img.php1.cn/3cd4a/1e618/c5a/d5d40da532c3a782.png" >
第三个直接不显示了,为什么呢?一起来按上面方法算一下吧:
系统先给3个textview分配他们所要的宽度fill_parent,也就是说每一都是填满他的父控件。这里就死屏幕的宽度
那么这时候的剩余空间=1个parent_width-3个parent_技术分享" src="http://img.blog.csdn.net/20160428160844923?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" >