-2

Possible Duplicate:
Android: Go back to previous activity

How do I jump back to the previous activity in Android? How do I find which one is the previous activity?

Community
  • 1
  • 1
Saqib Abbasi
  • 607
  • 2
  • 6
  • 17

2 Answers2

5

To go back to previous activity call finish() in your current activity.

When you call finish(), the resulting activity which is resuming will be your previous activity.

For more details study the activity lifecycle. It will give you a better idea of activity and navigation between the activities...

Renjith
  • 5,783
  • 9
  • 31
  • 42
-1

And, If you have not invoked finish() on your previous activity. Just finish() the current activity, it automatically displays previous. (Not recommended because entire activity will be stored in memory.)

Charan
  • 942
  • 1
  • 6
  • 18