Activity is started by intent Action_view. When I press back button the app closes. How can I start main activity instead?
Asked
Active
Viewed 402 times
1 Answers
0
you can override onBackpress method in Activity remove super(); and do what ever you want on back press
@Override
public void onBackPressed() {
// TODO Auto-generated method stub
//put your intent here
}

koutuk
- 832
- 1
- 8
- 17