在下面的代码中,我在 LinearLayout 中使用 layout_weight=1 和 layout_width(或 layout_height)等于 0 的组合。一个问题是为什么在第二个 LinearLayout 中,第二个按钮和第一个按钮不占用相等的空间?它们具有相同的权重 (layout_weight=1),因此它们应该具有相同的空间。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1.0"
android:text="wreoiwe roiwej roiwejr weoirjweoirjwoeirjoweijrowerjowejorjweoirjwoeiwoi" >
</TextView>
<LinearLayout
android:id="@+id/LinearLayout02"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/Button01"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:text="Submit" >
</Button>
<Button
android:id="@+id/Button02"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:text="Cancelrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr" >
</Button>
</LinearLayout>
</LinearLayout>