我的界面如下所示: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>
谢谢。