0

In my app,if i'm press back button or home up button it will closes my app. it's only when the activity is opened by the notification click ,so now i want to go to previous activity or home activity after a back press.

2 Answers2

1

Do this To Go Back

@Override
public void onBackPressed() {
   Intent setIntent = new Intent(this,YOUR_CLASS.class);
   startActivity(setIntent);
   finish();
}
Faiz Mir
  • 599
  • 5
  • 16
0

Define this in your activity

@Override
public void onBackPressed() {
// Your Action over here.
}
Kanwarpreet Singh
  • 2,037
  • 1
  • 13
  • 28