I have a MainActivity, then I call SecondActivity (where I choose a file whose data is given to ThirdActivity.
If back button is pushed, I want the app to go back yo MainActivity and not SecondActivity.
How can I do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are two ways to do it.
In SecondActivity, call finish() immediately after you start Activity 3.
Pass in the NO_HISTORY flag in the Intent for SecondActivity when starting it in MainActivity.