Android Fragment Shared Elements无法使用“添加”

时间:2017-01-22 16:41:30

标签: android animation

我一直试图让过渡动画与片段一起使用,我觉得奇怪(或者我可能不理解正确的事情)是,当使用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();

有什么想法吗?

0 个答案:

没有答案