I want to move to another activity but before i want to clear all the other activity. I know the method Intent.FLAG_ACTIVITY_CLEAR_TOP but it does not work when i back pressed after moving then it again show the previous one activity. My code is
Intent intent = new Intent(LoginActivity.this, WelcomeActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
progressDialog.dismiss();
Thanks Advance