I want to do something simple on android app. How is it possible to go back to a previous activity.
What code do I need to go back to previous activity
After that you have two way to back from current activity to previous activity:
Simply call: finish()
under button click listener,
Or
Override the following method to back using system back button:
@Override
public void onBackPressed() {
super.onBackPressed();
}