有没有一种很好的方法可以在循环中用另一个线性来膨胀 cardview 布局?

Is there a good way to inflate cardview layout with another linear in a loop?

我正在尝试用 CardView 创建一个 ListViewCardView 总是包含 3 行一些信息,但在那之后它有 2n 行,看起来像:
- 职务、姓名;
- 图像、数据、图像、数据。
我正在使用此任务对象,其中包含:
- 带有数据的对象,将始终填充拳头 3 行;
- 对象列表,我用于 2n 行。

我已经试过了:
- 将 RecyclerAdapter 换成 ArrayAdapter(有助于我改变可见性,但不会膨胀);
- 创建一个方法来处理与膨胀该布局相关的所有逻辑
- 在 onBindViewHolder/getView

内充气

我会用另一种方法粘贴带有充气 CardView 的版本:

public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {    

        /*inflating layout and fill it with data from first object*/
        View listItem = convertView;
        if(listItem == null)
            listItem = LayoutInflater.from(context).inflate(R.layout.card,parent,false);
        //add data

        //if needed to make sure that inflating will occur once. list is 
        //LinearLayout inside CardView, current is entire object
        if(list.getChildCount() < 1)
                addList(list, current);


        //setting click listeners and returning view
    }

 private void addList(ViewGroup parent, ListItem current){
        for (Item var : ListItem.getItemList()) {
            View layout = LayoutInflater.from(context).inflate(R.layout.card_part, parent, false);

            //setting data

            ViewGroup.LayoutParams params = layout.getLayoutParams();
            params.height = LinearLayout.LayoutParams.WRAP_CONTENT;
            params.width = LinearLayout.LayoutParams.WRAP_CONTENT;
            layout.setLayoutParams(params);
            parent.addView(layout);
        }
    }

@编辑:CardView

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/cardView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardBackgroundColor="@color/colorPrimary"
    android:layout_margin="15dp"
    app:cardCornerRadius="5dp"
    app:cardElevation="25dp">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_margin="10dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/id"
            android:visibility="gone"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/text"
            android:id="@+id/name"
            android:textSize="20sp"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/text"
            android:id="@+id/type"/>


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:textColor="@color/text"
                android:layout_weight="1"/>

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_expand"
                tools:ignore="ContentDescription"
                android:id="@+id/show_list"/>

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_hide"
                tools:ignore="ContentDescription"
                android:visibility="gone"
                android:id="@+id/hide_list"/>

        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:id="@+id/list"
            android:visibility="gone">

        </LinearLayout>


    </LinearLayout>
</android.support.v7.widget.CardView>

实际结果:
- 如果我评论

if(list.getChildCount() < 1)

数据填充有时会添加几次,不仅来自正确的对象。
- 现在 if 布局因错误数据而膨胀。
预期结果:
在内部膨胀 CardView 添加对对象正确的数据并连接到对象列表。

@EDIT2: 我尝试过手动创建 View 的那一部分,而不是使用 LayoutInflater。那不会改变任何东西。

在离开这个话题一段时间后,我找到了做这件事的方法。适配器在 getView/onBindViewHolder 上重用旧的 View。如果 Linear Layout 包含其他元素的早期列表,如 TextViewImageView 等,在添加新元素之前未被清除,旧元素将保留。 解决方案是删除旧的。在 Linear Layout 我需要在添加新元素之前调用 removeAllViews()