Shared Element Transition Not Working Between Parent and Child Fragments (Nested Fragments)

前端 未结 3 610
梦谈多话
梦谈多话 2020-12-19 07:35

In the Main Activity, I have BottomNavigationView where there are 3 different parent fragments. The parent fragment has recyclerview and on item cl

3条回答
  •  一生所求
    2020-12-19 07:53

    Shared element transition does not work properly with FragmentTransaction.add method because parent fragment is still alive and resumed. Try

    transaction.replace(R.id.child_fragment, newFragment, tag);
    

    Check this discussion thread for more information.

提交回复
热议问题