Intent intent = null; intent = new Intent(this, A.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_NEW_TASK); overridePendingTransition(R.anim.no_animation, R.anim.slide_down_out); ClassSelector.this.finish(); startActivity(intent);
I need to go from the current page to another page, that is A. I added the code 'intent.addFlags (Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);' since this code applies, the animation that applies to A does not work.
source share