これは数え切れないほど聞かれていることは承知していますが、まだ自分で解決策を見つけていません。GridLayoutを使用せずに、以下のようにレイアウトされた単純なボタンのセットを作成したいと思います。また、TableLayout や RelativeLayout についてもあまりうまくいきませんでした。私にとってうまくいくのは、まあ、LinearLayoutです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:padding="5dp" >
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#d0b0b0"
android:paddingRight="10dp"
android:textSize="15dip" />
<View
android:layout_width="10dp"
android:layout_height="0dp"
android:background="#808080" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#a09a09"
android:textSize="15dip" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:padding="5dp" >
<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#456456"
android:padding="10dp"
android:textSize="15dip" />
</LinearLayout>
</LinearLayout>
しかし、「ネストされたウェイトはパフォーマンスに悪い」という警告が表示されます。本当に?こんなにシンプルなレイアウトで?警告を無視できますか? これを行う他の(エレガントな?)方法はありますか?