我的代碼添加一個觀點是:addView不工作
LL = (LinearLayout) findViewById(R.id.LL);
LL.removeAllViewsInLayout(); //Works fine, is necessary for a separate reason
tx = new TextView(this);
tx.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT));
LL.addView(tx); //Program fails
程序停止在addView功能。
我們可以有堆棧跟蹤嗎? –
如果tx是一個TextView,你爲什麼試圖通過索引訪問? – ashishduh
@ashishduh這是一個複製錯誤,糾正它。 –