如何将xml数据包含到其他xml数据中
我有一个标题xml文件,我想在我的特殊其他内容xmls中使用我的应用程序 有没有办法将标题包含在我的内容中?
答案 0 :(得分:32)
使用include标记
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<!-- Header -->
<include
android:id="@+id/container_header_lyt"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_above=...
android:layout_toLeftOf=...
layout="@layout/header_logo_lyt" //Name of the xml layout file you want to include
/>
...
</RelativeLayout>
答案 1 :(得分:12)
你必须使用&lt;声明你的“body”xml布局。合并&gt;标签使用&lt;包括&gt;主要布局上的标记。
<?xml version="1.0" encoding="utf-8"?>
<merge>
<ImageView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
android:src="@drawable/image" / >
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"
android:background="#AA000000"
android:textColor="#ffffffff"
android:text="Some Text" / >
</merge>
这是你&lt;的内容。包括&gt;标签
答案 2 :(得分:5)
你应该使用&lt;包括&gt;标记:Re-using Layouts with