我为应用设计了一个屏幕。
这是我的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的屏幕。
有人可以帮帮我。
由于
答案 0 :(得分:0)
尝试添加:
android:orientation="vertical"
LinearLayout中的:
<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:orientation="vertical"
android:background="@drawable/bghomescreen" >
答案 1 :(得分:0)
最好的方法是以横向方式为您的屏幕创建单独的布局..这将为您解决问题..
答案 2 :(得分:0)
为横向和纵向创建单独的布局
对于横向,您可以在layout-land
文件夹中编写xml,并在layout-port
文件夹中根据纵向视图纵向编写相同的xml。
当您更改方向时,布局将自动调用。
答案 3 :(得分:0)
我不知道为什么这不起作用我还计算高度和余量以及所有这些但我也想知道为什么它的行为像这样
但是我在eclipse中尝试你的代码并找到了一个替代方案,试试这个,如果它可以帮助你
<RelativeLayout 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:gravity="center">
<TableLayout
android:id="@+id/tlmaintable"
android:layout_width="match_parent"
android:layout_height="304dp"
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" />
<Button
android:id="@+id/btnsearchbycuisine"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp" />
</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" />
<Button
android:id="@+id/btnadvancesearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp" />
</TableRow>
</TableLayout>
</RelativeLayout>