如何从新活动中调用以前的活动

时间:2014-09-05 05:22:14

标签: android android-activity

在我的项目中,我有3个活动,A-> B - > C.在C活动中它有订单按钮,在点击订单按钮后我还必须通过意图将一个包传递给A活动,我希望再次显示一个活动。我怎么才能再次展示A活动?

谢谢,

1 个答案:

答案 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);
  

如果有任何问题,请告诉我。