对Layout_weight的理解

layout_weight属性的作用是:用来分配空间,设置该组件所占的权重。

下面我们将编写代码来看layout_weight属性的使用。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    
    <TextView
        android:id="@+id/text1"
        android:layout_weight="1"
	    android:layout_width="match_parent"
	    android:layout_height="wrap_content"
	    android:background="#00ff00"
	    android:text="@string/hello_world"/>
    
    <TextView 
	    android:id="@+id/text2"
	    android:layout_weight="1"
	    android:layout_width="match_parent"
	    android:layout_height="wrap_content"
	    android:background="#aaaaaa"
	    android:text="@string/text"/>
    
	<TextView 
	    android:id="@+id/text3"
	    android:layout_weight="1"
	    android:layout_width="match_parent"
	    android:layout_height="wrap_content"
	    android:background="#ffffff"
	    android:text="@string/hello_world"/>
	

	
</LinearLayout>

运行的结果为:


当layout_width为match_parent是,单个组件默认是占据父面板的横向所有的空间,但是运行出来的结果却是三个占一样的比重。这是因为在代码中,我们将三个TextView组件的layout_weight属性都设为1,所以他们的三个在父面板中所占的比重都是一样的。

当我们将三个组件的比重改为1:2:2的时候,运行结果为


这个运行的结果是不是超出我们的预想呢,我们设置的比重是1:2:3,但是运行出来后发现第一个组件占得比重是最大的,第二和第三个组件占得比重一样但是都比第一个小,这是什么原因呢?

当我们三个组件的Layout_width都设置为match_parent时,理论上是需要占三个match_parent大小空间的,但是实际上只有一个match_parent空间的。所以他们的剩余空间应该为(-2)个match_parent空间。

所以对于第一个组件而言,他占的实际空间大小为:match_parent+(-2)*match_parent*所占比重(1/5) = (3/5)match_parent

第二个组件:match_parent+(-2)*match_parent*所占比重(2/5) = (1/5)match_parent

第三个组件:match_parent+(-2)*match_parent*所占比重(2/5) = (1/5)match_parent

所以最后他们所占的比例应该是3:1:1,就是图上显示的结果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值