How to resume activity instead of restart when going “up” from action bar

前端 未结 2 1292
感动是毒
感动是毒 2021-01-31 15:15

I have two activities. Say Activity A and Activity B.
From Activity A I click a button to launch Activity B

2条回答
  •  被撕碎了的回忆
    2021-01-31 16:10

    You can also achieve the same outcome programatically

    Intent upIntent = NavUtils.getParentActivityIntent(this);
    upIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    NavUtils.navigateUpTo(this, upIntent);
    

提交回复
热议问题