我有页眉和页脚的布局。我还有一个preference.xml布局。我现在想做的是我想将正常的布局包含在preference.xml
中如何将常规xml布局包含在preference.xml布局中?
答案 0 :(得分:0)
使用include
您可以将布局添加到其他布局:
示例:强>
<include
android:id="@+id/include1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/normal_layout" />
答案 1 :(得分:0)
您可以使用标记在xml文件中包含布局。
<include
android:id="@+id/header_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/normal_layout" />