Issue
Activity is started by intent Action_view. When I press back button the app closes. How can I start main activity instead?
Solution
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
}
Answered By - koutuk
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.