1

私のインターフェースは次のようになります: http://i.stack.imgur.com/zADUL.png

ここに画像の説明を入力

FrameLayout を表示画面に拡大するのに役立つ簡単な解決策はありますか? fillViewport と wrap_content を tabcontent の子に設定しようとしましたが、役に立ちませんでした。

4

1 に答える 1

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"
    tools:context=".Form" >

    <RelativeLayout
        android:id="@+id/header"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:background="#cccccc" >
    </RelativeLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/footer"
        android:layout_below="@+id/header"
        android:background="#ff0000" >
    </FrameLayout>

    <RelativeLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:background="#cccccc" >
    </RelativeLayout>

</RelativeLayout>

ありがとう。

于 2013-01-23T19:47:21.940 に答える