1

是否可以创建一个 xml 模块/结构,我可以使用自定义设置将其包含在另一个 xml 中?

这个想法是制作一个带有搜索栏、文本和文本输入的模块。我将在另一个 xml 中需要这个模块大约 20 次,但它的值(如文本和 id)对于每个实例都是不同的。

有没有办法在xml中做到这一点?

或者有没有办法制作一个使用这个基本 xml 模块并让我通过 xml 设置所需值的类?

4

1 回答 1

1

是的,您可以在 xml 布局中使用合并和包含标签。例如在 grid_layout_view.xml 你有这个代码:

<?xml version="1.0" encoding="utf-8"?><GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:orientation="vertical">
    <include android:id="@+id/my_inside_grid_layout" 
             layout="@layout/grid_layout_inside"/>    </GridLayout>

请注意使用标签导入 grid_layout_inside.xml 文件的内容,该文件包含以下内容:

    <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ListView
        android:background="#FFFFFFFF"
        android:layout_gravity="fill">
    </ListView>
    <LinearLayout
        android:layout_gravity="fill_horizontal"
        android:orientation="horizontal"
        android:padding="5dp">

        <Button
            android:text="Cancel"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
        <Button
            android:text="OK"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
     </LinearLayout>

</merge>

跳这有帮助,鲁本

于 2012-10-08T03:03:02.573 回答