包括优先布局

时间:2013-11-05 07:26:43

标签: android layout preference

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

如何将常规xml布局包含在preference.xml布局中?

2 个答案:

答案 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" />