我正在尝试将多个textview添加到已经膨胀的布局中。显示的信息将从数据库中提取,并为数据库中的每一行创建一个textview。由于数据库可能非常大,我在后台线程中一次创建一个textview,并将其添加到前台。
这是后台线程中调用的函数来更新前景:
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);
}
});
}
此功能成功运行一次,出现第一个textview。但是,当它第二次被调用时,它会在display.addView(temp)上失败;出现以下错误:
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the childs's parent first.
我不确定为什么我的textview已经有一个父级,如果它被认为是新实例化的。此外,我使用临时textview来绕过我的runnable无法引用本地textview t。它是否正确?任何帮助将不胜感激。
答案 0 :(得分:3)
使用final TextView
而不是使用成员变量(可以修改,当然不是本地变量),而不是使用成员变量:
final TextView t = new TextView(getBaseContext());
// ...
temp = t; // Remove this
runOnUiThread(new Runnable() {
public void run() {
// ...
display.addView(t);
}
});