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()
there is tag called launchMode for activity in the manifest. checkout this link. and this will not call onCreate but it will call onNewIntent, where you can reinitialize you stuff.