在我的项目中,我有3个活动,A-> B - > C.在C活动中它有订单按钮,在点击订单按钮后我还必须通过意图将一个包传递给A活动,我希望再次显示一个活动。我怎么才能再次展示A活动?
谢谢,
答案 0 :(得分:0)
如果你想完成活动B和c,取决于你的要求 按钮单击然后使用标志FLAG_ACTIVITY_CLEAR_TOP 旗。在这种情况下将调用newIntent,你可以获得bundle 从它。
@Override
protected void onNewIntent(Intent intent) {
// TODO Auto-generated method stub
super.onNewIntent(intent);
}
if you do not wants to close activity B and C then use
Intent intent = new Intent(this, YourActivity.class);
Bundle bundle = new Bundle();
intent.putextras(bundle);
startActivity(intent);
如果有任何问题,请告诉我。