私LinearLayout
は3つのボタンを含む(水平方向)を持っています。3つのボタンの幅を固定し、の幅全体に均等に分散させたいLinearLayout
。
これは、重力LinearLayout
を中央に設定してからボタンのパディングを調整することで管理できますが、これは固定幅では機能し、さまざまなデバイスや向きでは機能しません。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/btnOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dp" />
<Button
android:id="@+id/btnTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dp" />
<Button
android:id="@+id/btnThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dp" />
</LinearLayout>