我有以下代码:
scroll = (ScrollView) findViewById(R.id.scrollView1);
...
public void addItem(String str, int id) {
LinearLayout lay = new LinearLayout(this);
lay.setId(id);
TextView txt = new TextView(this);
txt.setText(str);
lay.addView(txt);
scroll.addView(lay);
}
当我调用 addItem() 一次就可以了,但是当我调用它两次或更多次时,就像这样:
addItem("text1",1);
addItem("text2",2);
我的应用程序崩溃:(