In the Main Activity, I have BottomNavigationView where there are 3 different parent fragments. The parent fragment has recyclerview and on item cl
BottomNavigationView
recyclerview
Shared element transition does not work properly with FragmentTransaction.add method because parent fragment is still alive and resumed. Try
FragmentTransaction.add
transaction.replace(R.id.child_fragment, newFragment, tag);
Check this discussion thread for more information.