0
我使用下面的代碼動態添加LinearLayout。試圖動態插入LinearLayout
public void sendMessage02(View view){
view.getId();
EditText editText=(EditText)findViewById(R.id.edit_message);
String message=editText.getText().toString();
LinearLayout l=(LinearLayout)findViewById(R.id.layout_odd);
TextView text=new TextView(this);
text.setText(message);
text.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
l.addView(text);
LinearLayout l2=(LinearLayout)findViewById(R.id.layout01);
l2.addView(l);
}
當我運行我的應用程序時,它的仿真器顯示錯誤,說應用程序不幸停止。
我在做什麼錯了?是否有任何其他方式動態添加布局。
會需要從logcat登錄才能確定錯誤源。 – Hein 2012-07-10 07:36:17
@ user1509702發佈您的logcat,以便我們可以幫助您。 – 2012-07-10 07:58:41