0

I am new to android. I am using browser using Intent.its working fine but am facing problem when i click on back button on device app exits. How to go to previous app when clicking on back button?

Ameer Moaaviah
  • 1,530
  • 12
  • 27
amarnathreddy
  • 89
  • 2
  • 8

1 Answers1

0

Try this:

 @Override
    public void onBackPressed() {
        super.onBackPressed();
    Intent signup_intent = new Intent(ActivityB.this, ActivityA.class);
    startActivity(signup_intent);
    }

//onClick of Back button in ActivityB put this it will take you to ActivityA

user1744952
  • 508
  • 1
  • 3
  • 15