简体   繁体   English

将FrameLayout拉伸到可见屏幕

[英]Stretch FrameLayout to visible screen

My interface looks like this: http://i.stack.imgur.com/zADUL.png 我的界面如下所示: http : //i.stack.imgur.com/zADUL.png

在此处输入图片说明

Is there any simple solution which helps me to stretch FrameLayout to visible screen? 有没有简单的解决方案可以帮助我将FrameLayout扩展到可见屏幕? I tried to set fillViewport and wrap_content to tabcontent children, but it didn't help. 我试图将fillViewport和wrap_content设置为tabcontent子级,但这没有帮助。

Try this : 尝试这个 :

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

Thanks. 谢谢。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM