1

我为该应用程序设计了一个屏幕。

这是我的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 的屏幕。

有人可以帮帮我吗。

谢谢

4

4 回答 4

0

尝试添加:

android:orientation="vertical"

在线性布局中:

<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" >
于 2013-03-15T12:38:15.930 回答
0

最好的方法是为您的屏幕创建一个单独的横向布局..这将为您解决问题..

于 2013-03-15T12:39:03.350 回答
0

为横向和纵向创建单独的布局。
对于横向,您可以在layout-land文件夹中写入 xml,对于垂直写入相同的 xml,根据纵向视图在layout-port文件夹中具有相同的名称。
当您更改方向时,布局将自动调用。

于 2013-03-15T12:43:22.207 回答
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>
于 2013-03-15T13:08:56.447 回答