これらの理由:
<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>
動かない ?
2 つinclude
の が積み重ねられ、互いに重なり合っています。(layout_below
は動作していません) s --と-- は両方とも
sです。
私は何か間違ったことをしましたか?include
myCustomTitleBar
myCustomToolBar
RelativeLayout
望ましい結果 :