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.
本文深入解析Android布局中LinearLayout组件下TextView的布局权重属性,并通过实例演示了将宽度设置为match_parent与0时的不同效果,揭示了权重分配背后的计算逻辑及其对布局的影响。
9584

被折叠的 条评论
为什么被折叠?



