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 回答