0

我有页眉和页脚的布局。而且我还有一个preference.xml 布局。我现在想做的是我想将正常布局包含到preference.xml中

关于如何将普通 xml 布局包含到 preference.xml 布局中的任何想法?

4

2 回答 2

0

您可以将include布局添加到其他布局:

例子:

<include
    android:id="@+id/include1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    layout="@layout/normal_layout" />
于 2013-11-05T07:42:54.770 回答
0

您可以使用标签在 xml 文件中包含布局。

<include
android:id="@+id/header_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/normal_layout" />
于 2013-11-05T08:38:45.697 回答