如何从一个(当前)活动中调用另一个活动?我想调用一个包含当前活动对话框消息框的活动。
答案 0 :(得分:8)
只需将您的邮件捆绑在一起并将其传递给intent。在Next Activity的onCreate函数中提取包并显示。
Bundle b = new Bundle();
b.putString("message","your message");
Intent i = new Intent(this,NextActivity.class);
i.putExtras(b);
startActivity(i);
在下一个活动的onCreate:
String message = (String) getIntent().getSerializableExtra("message");
立即显示消息....
答案 1 :(得分:7)
Intent i = new Intent(this, AnotherActivity.class);
startActivity(i);
答案 2 :(得分:0)
Intent i=new Intent(yourpresentactivity.this, nextactivity.class);
startActivity(i);