新しいプロジェクトを作成しましたが、変更したのは activity_main.xml ファイルだけでした。RelativeLayout を LinearLayout に変更し、android:orientation="vertical" を設定してから、このレイアウト内に次のコンポーネントを追加しました。
<LinearLayout android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<Button android:id="@+id/b00"
android:text="X"></Button>
<Button android:id="@+id/b01"
android:text="X"></Button>
<Button android:id="@+id/b02"
android:text="X"></Button>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<Button android:id="@+id/b10"
android:text="X"></Button>
<Button android:id="@+id/b11"
android:text="X"></Button>
<Button android:id="@+id/b12"
android:text="X"></Button>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<Button android:id="@+id/b20"
android:text="X"></Button>
<Button android:id="@+id/b21"
android:text="X"></Button>
<Button android:id="@+id/b22"
android:text="X"></Button>
</LinearLayout>
このアプリをテストすると、何も表示されません (ボタンも何もありません)。このように数秒間実行された後、強制終了します。助けてください!
編集:これはlogcatが言うことです...
03-10 18:10:02.190: I/dalvikvm(25796): threadid=4: reacting to signal 3
03-10 18:10:02.200: I/dalvikvm(25796): Wrote stack traces to '/data/anr/traces.txt'
03-10 18:10:06.720: I/Process(25796): Sending signal. PID: 25796 SIG: 9
/data/anr/traces.txt が見つかりません。