您的位置:首页 > 移动开发 > Android开发

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

2016-03-05 19:28 369 查看
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.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息