How can i go back to previous activity(List) with closing current activity(Save) in android I tried the below code
public void cancel() {
Intent intent = new Intent(Save.this, List.class );
startActivityForResult(intent, TIME_ENTRY_REQUEST_CODE);
}
but while running unfortunately my app is stopped.. can any one help me?