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
If you have setup correctly the AndroidManifest.xml file with activity parent, you can use :
NavUtils.navigateUpFromSameTask(this);
Where this is your child activity.