嘿伙计们首先抱歉我的英语不好(我不是母语人士)而且我知道这个问题之前已被问过好几次了。由于解决方案非常个性化,我有点困惑。
问题是:我正在尝试将多个视图(TextView,View)添加到LinearLayout。添加前两个组件工作正常,但对于第三个视图有一个例外。这是我的代码
if(textView_value != null) {
textView_value = null;
}
textView_value = new TextView(this);
textView_value.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
textView_value.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
linearLayout.addView(textView_value);
View view = new View(this);
view.setLayoutParams(...);
...
linearLayout.addView(view);
textView_value = new TextView(this);
...
linearLayout.addView(textView_value); // Here is the app crashing :(
答案 0 :(得分:2)
您不能多次添加同一视图。如果要添加相同的引用,首先需要将其从视图组中删除并添加。所以改变这两行
textView_value = new TextView(this);
linearLayout.addView(textView_value);
作为
TextView textView_value1 = new TextView(this);
linearLayout.addView(textView_value1);
答案 1 :(得分:2)
下面
textView_value = new TextView(this);
由于同一个对象导致问题的第二行在LinerLayout中再次添加。
将新TextView对象的其他名称用作:
TextView textView_value_one = new TextView(this);
...
linearLayout.addView(textView_value_one);