如何在填充有 inflater 的 TextView 中设置不同的文本?

How to set different texts in the TextViews populated with inflater?

template.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_below="@+id/header"
    android:orientation="horizontal"
    android:id="@+id/template_linear_layout_container"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <LinearLayout
        android:id="@+id/template_linear_layout">
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <TextView
                android:id="@+id/template_title_TV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="ALL"
        </RelativeLayout>
    </LinearLayout>
</LinearLayout>

我在 template.xml 中创建了一个 TextView,并使用 inflater 在 parent_view 中填充了 template.xml 的线性布局。

for(int i=0;i<3;i++){
    View container_template = getLayoutInflater().inflate(R.layout.templates, parent_layout, false);
    parent_layout.addView(container_template);
    TextView title_tv_template = (TextView) findViewById(R.id.template_title_TV);
    title_tv_template.setText(1+i+"text changed ");
}

我想更改每个填充的文本视图的文本,但上面的代码仅更改第一个文本视图的文本。

上面的代码是错误的,应该先设置文本,然后再添加到父视图中..

for(int i=0;i<3;i++){
    View container_template = getLayoutInflater().inflate(R.layout.templates, parent_layout, false);
    TextView title_tv_template = (TextView) container_template. findViewById(R.id.template_title_TV);
    title_tv_template.setText(1+i+"text changed ");
    parent_layout.addView(container_template);
}

这段代码可以工作..

正如 Bonatti 所指出的,findViewById() 将同一个资源作为目标三次。所以,我没有直接访问 template_title_TV,而是通过 container_template 视图访问它:

TextView title_tv_template = (TextView)container_template.findViewById(R.id.template_title_TV);