android 相对布局

发布于 2024-12-03 15:50:44 字数 1530 浏览 2 评论 0原文

是否可以使用RelativeLayout在顶部有一个区域,该区域使用所有可用空间(应动态填充一些视图)和按钮,该区域应位于屏幕的下端?

我尝试了以下操作,但没有付出任何努力:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/relativeLayout1"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<FrameLayout 
    android:id="@+id/topFrame"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp">

    <TextView
        android:text="blabla"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</FrameLayout>

<Button android:id="@+id/button1" 
    android:text="Button 1" 
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_below="@id/topFrame"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp" />

<Button android:id="@+id/button2" 
    android:text="Button 2" 
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_below="@id/button1"
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp" />

使用此解决方案,按钮填充空间而不是 FrameLayout。

is it possible to use RelativeLayout to have one area on top, which uses all available space (wich should be filled some Views dynamically) and to Buttons which should be on the lower end of the screen?

I tried following, but with no effort:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/relativeLayout1"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<FrameLayout 
    android:id="@+id/topFrame"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp">

    <TextView
        android:text="blabla"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</FrameLayout>

<Button android:id="@+id/button1" 
    android:text="Button 1" 
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_below="@id/topFrame"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp" />

<Button android:id="@+id/button2" 
    android:text="Button 2" 
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_below="@id/button1"
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_margin="6dp" />

whith this solution the button fills the space and not the FrameLayout.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

回忆追雨的时光 2024-12-10 15:50:44

试试这个:

<RelativeLayout......>
<FrameLayout 
android:id="@+id/topFrame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" 
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_margin="6dp">

<TextView
    android:text="blabla"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</FrameLayout>  
<RelativeLayout 
    android:id="@+id/InnerRelativeLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" >

    <Button 
       .....
    </Button>

    <Button 
       .....
    </Button>

</RelativeLayout>
</RelativeLayout>

TRy this:

<RelativeLayout......>
<FrameLayout 
android:id="@+id/topFrame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" 
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_margin="6dp">

<TextView
    android:text="blabla"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</FrameLayout>  
<RelativeLayout 
    android:id="@+id/InnerRelativeLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" >

    <Button 
       .....
    </Button>

    <Button 
       .....
    </Button>

</RelativeLayout>
</RelativeLayout>
忘年祭陌 2024-12-10 15:50:44

在 FrameLayout 中,将 android:layout_height="wrap_content" 更改为 android:layout_height="fill_parent",然后包含 android:layout_above="@+id/button1"。它应该强制 FrameLayout 填充空间并始终位于第一个按钮上方。

In the FrameLayout, change android:layout_height="wrap_content" to android:layout_height="fill_parent" then include android:layout_above="@+id/button1". It should force the force the FrameLayout to fill the space and always be above the first button.

杯别 2024-12-10 15:50:44

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout1"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">


<Button android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:id="@+id/button1" 
android:text="Button" 
android:layout_alignParentBottom="true" 
android:layout_alignParentRight="true" 
android:layout_alignParentLeft="true"/>

<Button android:layout_height="wrap_content" 
android:id="@+id/button2" 
android:text="Button" 
android:layout_above="@+id/button1" 
android:layout_width="fill_parent" 
android:layout_alignParentLeft="true"/>

<FrameLayout android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:id="@+id/frameLayout1" 
android:layout_above="@+id/button2" 
android:layout_alignParentTop="true" 
android:layout_alignParentRight="true" 
android:layout_alignParentLeft="true">

<TextView android:layout_height="wrap_content" 
android:text="TextView"         
android:layout_width="fill_parent" 
android:id="@+id/textView1">
</TextView>


</FrameLayout>

</RelativeLayout>

抱歉,如果我错过了什么。

Try this.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout1"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">


<Button android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:id="@+id/button1" 
android:text="Button" 
android:layout_alignParentBottom="true" 
android:layout_alignParentRight="true" 
android:layout_alignParentLeft="true"/>

<Button android:layout_height="wrap_content" 
android:id="@+id/button2" 
android:text="Button" 
android:layout_above="@+id/button1" 
android:layout_width="fill_parent" 
android:layout_alignParentLeft="true"/>

<FrameLayout android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:id="@+id/frameLayout1" 
android:layout_above="@+id/button2" 
android:layout_alignParentTop="true" 
android:layout_alignParentRight="true" 
android:layout_alignParentLeft="true">

<TextView android:layout_height="wrap_content" 
android:text="TextView"         
android:layout_width="fill_parent" 
android:id="@+id/textView1">
</TextView>


</FrameLayout>

</RelativeLayout>

Sorry if I missed something.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文