2013-11-05 125 views
0

我有頁眉和頁腳的佈局。我也有一個preference.xml佈局。我現在想要做的是我想包括正常的佈局到preference.xml包含優先的佈局

任何想法如何將常規xml佈局包括到preference.xml佈局?

回答

0

include您可以將佈局添加到其他的佈局:

例子:

<include 
    android:id="@+id/include1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    layout="@layout/normal_layout" /> 
0

您可以使用標籤來包括在XML文件格式。

<include 
android:id="@+id/header_layout" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
layout="@layout/normal_layout" />