我想创建一个视图,它将位于另一个视图下方并覆盖它
我做了以下
<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>
但它没有用,任何解决方案?