我有页眉和页脚的布局。而且我还有一个preference.xml 布局。我现在想做的是我想将正常布局包含到preference.xml中
关于如何将普通 xml 布局包含到 preference.xml 布局中的任何想法?
我有页眉和页脚的布局。而且我还有一个preference.xml 布局。我现在想做的是我想将正常布局包含到preference.xml中
关于如何将普通 xml 布局包含到 preference.xml 布局中的任何想法?
您可以将include
布局添加到其他布局:
例子:
<include
android:id="@+id/include1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/normal_layout" />
您可以使用标签在 xml 文件中包含布局。
<include
android:id="@+id/header_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/normal_layout" />