Resume activity in Android

后端 未结 4 1785
情歌与酒
情歌与酒 2020-12-14 03:07

I have an app with 3 activities.

I have the main activity. This calls the second activity, which then calls the third activity. I want return to the main activity wi

4条回答
  •  失恋的感觉
    2020-12-14 03:22

    If your Activity is still running, this code will bring it to the front without entering onCreate

    Intent openMainActivity = new Intent(TerceraActiviry.this, Main.class);
    openMainActivity.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
    startActivityIfNeeded(openMainActivity, 0);
    

提交回复
热议问题