16

我有一个通用布局 (common.xml),我想在另一个布局 (layout_a.xml) 中多次包含它。但它只向我展示了一次。为什么?

common.xml

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@android:drawable/alert_light_frame">

        <ImageView

            android:layout_width="match_parent"
            android:layout_height="150dp"
            android:id="@+id/imageView"

            android:src="@drawable/test"

            android:scaleType="centerCrop" />

        <TextView

            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:layout_below="@+id/imageView"
            android:id="@+id/textView"
            android:text="test"
            android:layout_marginTop="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginLeft="10dp" />
    </RelativeLayout>
</merge>

布局_a.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <include layout="@layout/common" />

    <include layout="@layout/common" />
</LinearLayout>
4

4 回答 4

13

在 XML 中定义的 id 必须是唯一的。您包括两个具有包含相同 ID 的视图的布局。

以下是您将如何修复它。

ps 除非您的第一个布局文件中没有包含更多代码,否则该合并标记是无用的。

于 2013-10-05T08:11:50.673 回答
10

正如btse所说,XML 中的 id 必须是唯一的。可以这样实现:

<include android:id="@+id/common1"
    layout="@layout/common" />

<include android:id="@+id/common2"
    layout="@layout/common" />

有关如何访问这两个包含的视图中的元素的信息,您可以查看博客文章。

于 2013-10-05T08:23:31.893 回答
1

这就是我在我的项目中使用Inflater. test1只是一个LinearLayout(Vertical)带有文本和按钮的布局,mainofferslayout在这种情况下,主要布局带有图像。

// Inflate the layout for this fragment
    View view = inflater.inflate(R.layout.fragment_offers_display, container, false);

    View inflatedLayout = inflater.inflate(R.layout.test1, (ViewGroup) view, false);
    LinearLayout ll = (LinearLayout) view.findViewById(R.id.mainofferslayout);

    ll.addView(inflater.inflate(R.layout.test1, (ViewGroup) view, false));
    ll.addView(inflater.inflate(R.layout.test1, (ViewGroup) view, false));
    ll.addView(inflater.inflate(R.layout.test1, (ViewGroup) view, false));
于 2018-10-22T15:21:20.153 回答
-3

我通过将 RelativeLayout 的 layout_height 设置为 250dp 来修复它们,因为它们是重叠的。

于 2013-10-05T09:06:19.230 回答