LinearLayout中的weight属性的计算

Posted xingxing_yan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinearLayout中的weight属性的计算相关的知识,希望对你有一定的参考价值。

Linearlayout中weight属性的计算公式:
最终宽度 = 控件原来宽度 + 控件在父控件剩余空间所占的百分比(也就是weight的值)

以下两个例子进行说明:
条件:假设父控件宽度为L

例1.

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button1" />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:text="Button2" />
</LinearLayout>

因为Button1和Button2的layout_width=match_parent, 所以原有宽度为L,而父控件的剩余
宽度就是L - 2L(父控件的宽度 - Button1和Button2的原有宽度);
Button1的宽度:
实际宽度 = L + (L-2L) * 1/3 = (2/3)L;
Button2的宽度:
实际宽度 = L + (L-2L) * 2/3 = (1/3)L;

height的计算和width一样,不过需要注意设置height是LinearLayout的orientation属性的值为vertical

以上是关于LinearLayout中的weight属性的计算的主要内容,如果未能解决你的问题,请参考以下文章

(android筑基系列)之LinearLayout适配问题(android:layout_weight属性)

(android筑基系列)之LinearLayout适配问题(android:layout_weight属性)

(android筑基系列)之LinearLayout适配问题(android:layout_weight属性)

[Android] android:layout_weight 属性的工作原理

Android线性布局(LinearLayout)最全解析

LinearLayout布局下android:layout_weight用法