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

FrameLayout を表示画面に拡大するのに役立つ簡単な解決策はありますか? fillViewport と wrap_content を tabcontent の子に設定しようとしましたが、役に立ちませんでした。
私のインターフェースは次のようになります: http://i.stack.imgur.com/zADUL.png

FrameLayout を表示画面に拡大するのに役立つ簡単な解決策はありますか? fillViewport と wrap_content を tabcontent の子に設定しようとしましたが、役に立ちませんでした。
これを試して :
<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>
ありがとう。