2
フラグメントAをフラグメントBに置き換えてアニメーション化しています。フラグメントBは、を有し、TextView
およびListView
を有する。私が見ることができるのは、フラグメントBのビューが別々にアニメーション化されていることです。TextView
はリストアイテム1のサブタイトルとは異なる速度でスライドし、リストアイテム1のタイトルとアイコンはアニメーションなしで即座に表示されます。同時にアニメーション化することは可能ですか?フラグメント遷移を同時にアニメーション表示にする
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
Fragment existing = fragmentManager.findFragmentById(R.id.welcome_content);
if (existing != null) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
fragmentToLoad.setAllowEnterTransitionOverlap(true);
fragmentToLoad.setEnterTransition(new Slide(Gravity.RIGHT));
}
fragmentTransaction.remove(existing);
}
fragmentTransaction.add(R.id.welcome_content, fragmentToLoad);
fragmentTransaction.commitNow();