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

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

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.


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值