我一直试图让过渡动画与片段一起使用,我觉得奇怪(或者我可能不理解正确的事情)是,当使用replace
时,它按预期工作,但在使用时{ {1}}它没有......
WORKS:
add
不工作:
EndFragment fragment = new EndFragment();
FragmentManager fragmentManager = getFragmentManager();
fragmentManager.beginTransaction()
.addToBackStack(null)
.addSharedElement(imageView, imageTransitionName)
.addSharedElement(textView, textTransitionName)
.replace(R.id.container, fragment)
.commit();
有什么想法吗?