Androidの画面の画面サイズに合わせて3つのボタンを並べて設定するにはどうすればよいですか。画面の 50% 50% の場合、これが使用されます。しかし、3番目のボタンを追加したい場合、どうすればこれを達成できますか。つまり、35% 35% 35% と 5% のスペースです。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:weightSum="1.0">
<Button
android:id="@+id/textbox3"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:layout_width="0dip"
android:textSize="12sp" />
</LinearLayout>