Come back to First activity without its onCreate() called August 9, 2017 Intent intent=new Intent(ActivityC.this,ActivityA.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); startActivity(intent); finish(); References https://stackoverflow.com/questions/34195828/how-to-come-back-to-first-activity-without-its-oncreate-called Related