I want to reload an activity from stack.
I use startActivity() to start new activities. When I\'m on Activity D I want to reload Activity A
startActivity()
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: this.finish(); return true; } return super.onOptionsItemSelected(item); }
This will kill the child activity. So parent activity is not recreated