查看下面并覆盖android中的另一个视图

时间:2017-02-18 20:32:03

标签: android xml

我想创建一个视图,它将位于另一个视图下方并覆盖它

我做了以下

  <RelativeLayout  android:layout_height="wrap_content" android:layout_width="wrap_content">


        <include layout="@layout/toolbar" android:id="@+id/tool"
            />


        <include layout="@layout/content_main"
            android:layout_width="match_parent"
                 android:layout_height="match_parent"
            android:layout_below="@+id/tool"
            android:layout_marginBottom="30dp"
         />



        </RelativeLayout>

但它没有用,任何解决方案?

2 个答案:

答案 0 :(得分:1)

首先,您需要撤消视图的顺序,toolbar应隐藏content_main,以便在其后添加。{/ p>

其次,您可以为此使用负边距,告诉content_main低于toolbar,然后在其上放置一个负的上边距,使其移动一点,然后在{{ 1}}。

示例:

toolbar

结果:

Result screenshot

答案 1 :(得分:0)

尝试使用FrameLayout而不是RelativeLayout。