Resume activity in Android

后端 未结 4 1784
情歌与酒
情歌与酒 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:30

    The launch mode flag you want is clearTop. This will go back to the previous instance of the main activity and clear the second and third activity off the activity stack. For example, to do this from the code:

    Intent intent = new Intent(TerceraActiviry.this, Main.class));
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(intent);
    

提交回复
热议问题