Android学习笔记----layout_weight属性解析

来源:互联网 发布:9.9元天天特价淘宝童装 编辑:程序博客网 时间:2024/04/29 02:59

android:layout_weight属性只有在Linearlayout中起作用,而且分别设置android:layout_width为wrap_content和match_parent会造成两种截然相反的效果。


<span style="font-family:SimSun;"><LinearLayout         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:orientation="horizontal" >           <TextView             android:layout_width="match_parent"             android:layout_height="wrap_content"             android:layout_weight="1"             android:background="@color/black"          />           <TextView             android:layout_width="match_parent"             android:layout_height="wrap_content"             android:layout_weight="2"             android:background="@color/green"             /></LinearLayout></span>

两个TextView的宽度均设为match_parent,一个权重为1,一个权重为2.得到效果如下:


权重为1的反而占了三分之二!

更改布局如下

<strong><LinearLayout      android:layout_width="match_parent"      android:layout_height="wrap_content"      android:orientation="horizontal" >        <TextView          android:layout_width="0"   <!-- 为了让宽度的比例为严格的 1:2 此处需将宽度设置为0 当然如果不是很严格的话可以是wrap_content-->        android:layout_height="wrap_content"          android:layout_weight="1"         android:background="@color/black"           />        <TextView          android:layout_width="0"   <!-- 为了让宽度的比例为严格的 1:2 此处需将宽度值设置为0 当然如果不是很严格的话可以是wrap_content -->        android:layout_height="wrap_content"          android:layout_weight="2"          android:background="@color/green"           />  </LinearLayout> </strong> 
也就是把宽度修改为wrap_content,此时会看到如下的效果



左边 TextView占比三分之一,又正常了。

android:layout_weight的真实含义是:一旦View设置了该属性(假设有效的情况下),那么该 View的宽度等于原有宽度(android:layout_width)加上剩余空间的占比!

设屏幕宽度为L,在两个view的宽度都为match_parent的情况下,原有宽度为L,两个的View的宽度都为L,那么剩余宽度为L-(L+L) = -L, 左边的View占比三分之一,所以总宽度是L+(-L)*1/3 = (2/3)L.


0 0
原创粉丝点击