我想开发一种类似的应用程序(下面的链接) 如何在android中动态创建按钮? 但同时我想在另一个活动中显示它,而不是在同一个活动中。有 2 个编辑文本:1)要创建的按钮名称。2) 目标地址(用于在创建新按钮时发送的消息)。其文本正在传递给另一个活动以创建新按钮。
当我写
public void onClick(View v) {
// TODO Auto-generated method stub
final Context context1=this;
if(v.getId()==R.id.button4){
LinearLayout l1 = (LinearLayout) findViewById(R.id.layout);
// R.id.layout is the layout id of the xml file for the 2nd activity.
Intent intent1 = new Intent(context1,PCode.class);
Button b = new Button(this);
l1.addView(b);
startActivity(intent1);
}
该活动没有移动到第二个活动,并且程序正在终止。在同一活动中进行时,我可以创建新按钮。请帮助。