Activity's flow of run
A->B->C->D
I don't want to call startActivity(new Intent(context, A.class));
by only using finish.
Thanks for your response but i recently solved problem with this way.
Intent intent = new Intent(this, A.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
finish();