为什么这些:
<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=".MainActivity" >
<include
layout="@layout/myCustomTitleBar"
android:id="@+id/titlebar" />
<include
layout="@layout/myCustomToolBar"
android:id="@+id/toolbar"
android:layout_below="@id/titlebar" />
<com.myname.myapp.MyCustomView
android:id="@+id/myView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar"
/>
</RelativeLayout>
不管用 ?
两个include
s 相互堆叠/重叠。(layout_below
不起作用)s --和-- 都是
s 。
我做错什么了吗 ?include
myCustomTitleBar
myCustomToolBar
RelativeLayout
期望的结果 :