爲什麼這些:有多個定位佈局包括
<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
彼此堆疊/重疊。 (layout_below
不工作)
兩個include
s - myCustomTitleBar
和myCustomToolBar
- 均爲RelativeLayout
s。
我做錯了什麼?
期望的結果: