2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="5"
        android:text="Button1"
        android:textSize="20dp" >
    </Button>

    <Button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="Button2"
        android:textSize="20dp" >
    </Button>

</LinearLayout>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="5"
        android:text="Button1"
        android:textSize="20dp" >
    </Button>

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="Button2"
        android:textSize="20dp" >
    </Button>

</LinearLayout>

在代码版本 1 中,按钮 1 的高度是按钮 2 的 5 倍

在代码版本 2 中,按钮 2 的高度是按钮 1 的 5 倍

当 android:layout_height="0dp" 被 android:layout_height="match_patent" 替换时,权重是相反的。您能否解释这种行为以及 android:layout_weights 的实际工作原理,并解释每种情况的原因。

4

1 回答 1

2

Layout_weight 设置为那些其值将被指定为 0 的组件。这意味着它们没有自己的高度/宽度,并且将占据由权重指定的屏幕百分比。

于 2013-03-28T12:15:19.823 回答