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);
現在のページから A である別のページへの遷移が必要です。コード 'intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_NEW_TASK);' を追加しました。このコードは A に適用されるアニメーションが適用されるため、機能しません。