アプリの画面をデザインしました。
ここに私のxmlがあります
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bghomescreen" >
<TableLayout
android:id="@+id/tlmaintable"
android:layout_width="match_parent"
android:layout_height="304dp"
android:layout_marginTop="100dp"
android:orientation="vertical">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="60dp" >
<Button
android:id="@+id/btnsearchbylocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@drawable/btn_bg_location" />
<Button
android:id="@+id/btnsearchbycuisine"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@drawable/btn_bg_cuisine1" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="80dp">
<Button
android:id="@+id/btnquickbite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@drawable/btn_bg_quickbite" />
<Button
android:id="@+id/btnadvancesearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@drawable/btn_bg_cuisine"/>
</TableRow>
</TableLayout>
</LinearLayout>
アプリを実行すると、すべてのアイテムが横向きモードで表示されますが、縦向きモードに変換すると、テーブル ビューの最初の行しか表示されません。私は他の人を見ることができません。
寸法が 480x800 の画面を使用しています。
誰かが私を助けてくれませんか。
ありがとう