我为该应用程序设计了一个屏幕。
这是我的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 的屏幕。
有人可以帮帮我吗。
谢谢