オプションで遊んでいますmeasureWithLargestChild="true"
。ボタンの 1 つに大きすぎるテキストが含まれていると、レイアウト全体が壊れる理由がわかりません。基本サイズは1/3のままでいいと思いますが、1/6くらい小さくなっています。何故ですか?
ここにいくつかのスクリーンショットがあります:
ここに私のxmlがあります:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:measureWithLargestChild="true" >
<Button
style="@style/my_style"
android:layout_weight="1"
android:text="Button123456" />
<Button
style="@style/my_style"
android:layout_weight="1"
android:text="A" />
<Button
style="@style/my_style"
android:layout_weight="1"
android:text="WW" />
</LinearLayout>
</LinearLayout>