我的界面看起來是這樣的: http://i.stack.imgur.com/zADUL.png拉伸的FrameLayout到可視屏幕
有沒有什麼簡單的解決方案,它可以幫助我伸展的FrameLayout到可視屏幕?我試圖設置fillViewport和wrap_content tabcontent子項,但它沒有幫助。
我的界面看起來是這樣的: http://i.stack.imgur.com/zADUL.png拉伸的FrameLayout到可視屏幕
有沒有什麼簡單的解決方案,它可以幫助我伸展的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>
感謝。
請參閱我爲您的問題發佈的解決方案。 –