0
I need that when I arrive in the last screen of questions of my application I can only return to the menu screen that is the screen after the main and only in this final screen of questions that I can reset the list . Thank you !
0
I need that when I arrive in the last screen of questions of my application I can only return to the menu screen that is the screen after the main and only in this final screen of questions that I can reset the list . Thank you !
0
Have you ever thought about using Flag? For example: Intent telaMenu = new Intent(RegistroActivity.this, MenuActivity.class); telaMenu.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(telaMenu);
Browser other questions tagged javascript android android-activity
You are not signed in. Login or sign up in order to post.
I saw about however it didn’t work keep coming back to the interior screen
– aleander rayson
try adding this code I gave you
– Thales Augusto