Android - 视图底部的布局,不覆盖

时间:2013-01-10 21:02:19

标签: android android-layout overlay

布局视图时遇到问题。 我希望“buttonsLayout”停靠在视图的底部。这没问题,但我的“buttonsLayout”覆盖了“寻呼机”。我希望“寻呼机”停止,“buttonsLayout”开始。

我看过很多帖子,但没有任何帮助。有什么问题?

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

<android.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="@color/gray" >
</android.support.v4.view.ViewPager>

<RelativeLayout
    android:id="@+id/buttonsLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:orientation="horizontal" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:text="Left" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Right" />
</RelativeLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:4)

将android:layout_above =“@ + id / buttonsLayout”添加到您的寻呼机布局中。因此,寻呼机永远不会覆盖按钮。

P.S。我看不到你的xml中还有一个关闭RelativeLayout标签......