多个充气文本视图的Android设置文本仅适用于最后一个

时间:2016-06-12 22:38:02

标签: android textview layout-inflater

我是Android新手,我正在尝试制作一个简单的清单应用。我正在测试使用文本视图的xml模板动态地将textview添加到活动中。问题是当我尝试给多个视图充气时,它会创建文本视图,但只将文本设置为最后创建的视图。

以下是活动中的代码:

    LinearLayout linearLayout = (LinearLayout)findViewById(R.id.main_linear_layout);

    TextView textView1 = (TextView)getLayoutInflater().inflate(R.layout.textview_template, linearLayout).findViewById(R.id.textview_template);
    TextView textView2 = (TextView)getLayoutInflater().inflate(R.layout.textview_template, linearLayout).findViewById(R.id.textview_template);
    TextView textView3 = (TextView)getLayoutInflater().inflate(R.layout.textview_template, linearLayout).findViewById(R.id.textview_template);

    textView1.setText("Take out trash.");
    textView2.setText("Wash windows.");
    textView3.setText("Why won't you work?");

以下是我尝试将textviews插入的主要布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/main_linear_layout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:clipToPadding="false"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <android.support.v7.widget.Toolbar
            android:id="@+id/my_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="#EEEEEE"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:elevation="2dp"
        android:background="#FFFFFF">
        <EditText android:id="@+id/new_task_text_edit"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:hint="@string/text_edit_hint"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/button_add"
            android:onClick="addTask"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="4dp">

    </LinearLayout>

</LinearLayout>

以下是textview(textview_template.xml)的模板代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView android:id="@+id/textview_template"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="6dp"
        android:paddingBottom="6dp"
        android:textColor="#000000"
        android:textSize="20dp"
        android:background="@drawable/item_box" />
</LinearLayout>

这就是显示的内容:

enter image description here

我尝试在每次充气后但在下次充气之前设置文本,但结果是相同的。我做错了什么?

2 个答案:

答案 0 :(得分:1)

实际上,您的所有textView1textView2textView3都指向同一个用户界面,因为您正在使用相同的ID进行充气,并且您正在立即搜索。

Id必须是不同的,并且为了更好地编码,使用recyclerview和适配器,可以更好地进行编码。

答案 1 :(得分:1)

textview_template.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textview_template"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="6dp"
        android:paddingBottom="6dp"
        android:textColor="#000000"
        android:textSize="20dp"
        android:background="@drawable/item_box"
 />

我不知道您的main_linear_layout ID在哪里,但活动代码应该是这样的。

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.main_linear_layout);
 TextView textView1 = (TextView) getLayoutInflater().inflate(R.layout.textview_template, null);
 TextView textView2 = (TextView) getLayoutInflater().inflate(R.layout.textview_template, null);
 TextView textView3 = (TextView) getLayoutInflater().inflate(R.layout.textview_template, null);

textView1.setText("Take out trash.");
textView2.setText("Wash windows.");
textView3.setText("Why won't you work?");
linearLayout.addView(textView1);
linearLayout.addView(textView2);
linearLayout.addView(textView3);