新しいレイアウトを作成しようとしています。私が最後に使用したレイアウトはGridLayoutで、基本的に3列8行のテーブルを作成しました。行スパンを使用すると、Eclipse内で希望の外観を実現できましたが、携帯電話の画面はEclipseよりも少し長く、1列目と2列目は見栄えがよく、3列目は右に伸びています。
新しいレイアウトは次のようになります。
**右側の矢印が画面の端をはるかに超えていることがわかりますが、理由はわかりません。さまざまなデバイスで使用したときに適切にスケーリングされるレイアウトを作成しようとしています。
XMLコードは次のとおりです。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightsum="1.0" >
<ImageView
android:id="@+id/arrowLeft"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".33"
android:src="@drawable/arrowleftoff" />
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight=".34" />
<ImageView
android:id="@+id/arrowRight"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".33"
android:src="@drawable/arrowrightoff" />
</LinearLayout>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</LinearLayout>
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</LinearLayout>
</TableRow>
</TableLayout>