Intent intent = new Intent(LoginActivity.this, Profile.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
overridePendingTransition(R.anim.pull_in_right, R.anim.push_out_left);
I am using this flags to clear all activity stack after logging in. The problem is, the transition became really ugly since the screen turns to white momentarily. Any workaround to avoid this?
P.S.: Both activities has RED Color as their background. I am wondering where the white color cames from.