FragmentTransaction animation to slide in over top

前端 未结 9 1388
星月不相逢
星月不相逢 2020-11-30 20:26

I am trying to achieve the following effect using FragmentTransaction.setCustomAnimations.

  1. Fragment A is showing
  2. Replace Fragment A with Fragment B. F
9条回答
  •  执念已碎
    2020-11-30 20:40

    FragmentTransaction ft = ((AppCompatActivity) context).getSupportFragmentManager().beginTransaction();
                    ft.setCustomAnimations(0, R.anim.slide_out_to_right);
                if (!fragment.isAdded())
                {
                    ft.add(R.id.fragmentContainerFrameMyOrders, fragment);
                    ft.show(fragment);
                }
                else
                    ft.replace(R.id.fragmentContainerFrameMyOrders, fragment);
                ft.commit();
    

提交回复
热议问题