実は方法があります!includeを使用したレイアウトの再利用- タグ
再利用したいレイアウトを定義するだけです。
<LinearLayout
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"
android:orientation="horizontal">
<ImageView
android:id="@+id/profileImage"
android:layout_width="128dp"
android:layout_height="128dp"
android:src="@drawable/lena" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/profileOnline"/>
</LinearLayout>
次に、必要な回数だけViewGroupに含めます
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal">
<include layout="@layout/titlebar"/>
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:padding="10dp" />
...
</LinearLayout>
タグで指定することにより、含まれるレイアウトのルート ビューのすべてのレイアウト パラメータ (任意の android:layout_* 属性) をオーバーライドすることもできます。例えば:
<include android:id="@+id/news_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/title"/>
詳細については、http://developer.android.com/training/improving-layouts/reusing-layouts.htmlを参照してください。