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

横向きと縦向きで別々のレイアウトを作成します。
横向きの場合はlayout-landフォルダーにxmlを書き込み、縦向きの場合はフォルダーに同じ名前の縦向きビューに従って同じxmlを書き込むことができlayout-portます。
向きを変更すると、レイアウトが自動的に呼び出されます。

于 2013-03-15T12:43:22.207 に答える
0

最善の方法は、横向きの画面用に別のレイアウトを作成することです..これで問題が解決します..

于 2013-03-15T12:39:03.350 に答える
0

なぜそれが機能しないのかわかりません高さとマージンなども計算しますが、なぜこのように動作するのだろうか

しかし、私はEclipseであなたのコードを試してみました.1つの代替案が見つかりました.

<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 に答える