0

Activity is started by intent Action_view. When I press back button the app closes. How can I start main activity instead?

Yarh
  • 4,459
  • 5
  • 45
  • 95

1 Answers1

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