5

我正在尝试将多个文本视图添加到已经膨胀的布局中。显示的信息是从数据库中提取的,为数据库中的每一行创建一个文本视图。由于数据库可能非常大,我在后台线程中一次创建每个文本视图,并将其添加到前台。

这是在后台线程中调用以更新前台的函数:

private TextView temp;
private void addClickableEvent(ReviewHistoryEvent e){
    if(e == null){
        Log.e(tag,"Attempted to add a null event to review history");
        return;
    }
    TextView t = new TextView(getBaseContext());
    t.setTag(e);
    t.setText(e.getTime()+"  "+e.getEvent());
    t.setClickable(true);
    t.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
    t.setTextAppearance(getBaseContext(), R.style.Information_RegularText);
    t.setGravity(Gravity.CENTER);
    t.setOnClickListener(this);

    temp = t;
    runOnUiThread(new Runnable() {
         public void run() {
             LinearLayout display = (LinearLayout) findViewById(R.id.reviewHistory_display);
            display.addView(temp);
        }
    });
}

此函数成功运行一次,并出现第一个文本视图。但是,当它被第二次调用时,它在 display.addView(temp); 上失败了。符合以下错误:

java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the childs's parent first.

我不确定为什么我的 textview 已经有一个父级,如果它应该是新实例化的。此外,我使用临时文本视图来解决我的可运行文件无法引用本地文本视图 t 的问题。它是否正确?任何帮助,将不胜感激。

4

1 回答 1

4

不要使用成员变量(当然,它可以修改并且不是本地的),final TextView而是使用 a :

final TextView t = new TextView(getBaseContext());
// ...

temp = t; // Remove this
runOnUiThread(new Runnable() {
     public void run() {
        // ...
        display.addView(t);
    }
});
于 2013-02-12T22:21:11.907 回答