<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 的实际工作原理,并解释每种情况的原因。