I want to clear all previous activity stack and launch new activity. But when i press back key control goes to previous activity. I am not finished all previous activity. When i logout i want to exit from app. I used below flags:
intentLogin.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intentLogin.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intentLogin.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
intentLogin.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
and added below lines in AndroidManifest.xml
android:launchMode="singleInstance"
But there is white screen appears before launching new activity.
I also changed theme to Translucent but while launching activity, but it shows android home icons for some moment.
I don't want to use:
moveTaskToBack(true);