方法一
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
<include android:id="@+id/includedContainer1" layout="@layout/layoutFile" />
</RelativeLayout>
方法二
使用merge
some_activity.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> // some views <include layout="@layout/view_part"/> // probably more views</LinearLayout>
view_part.xml:
<merge xmlns:android="http://schemas.android.com/apk/res/android"> // the views to be merged</merge>