Home > Software engineering >  Is it possible to exit app without closing activity
Is it possible to exit app without closing activity

Time:01-14

Is it possible to open straight to last activity in app when previously pressed the back button ? just like when pressed home button the app will straight to open last activity.

using finish() and finishAffinity() not working because it will close the activity

CodePudding user response:

You can try the idea of Activity stack to solve the problem

CodePudding user response:

If you finish the previous activity . There is no way you could go back there.

Start the new activity without finishing the previous one. Finish should work

  •  Tags:  
  • Related