使用时出现此错误
getActivity().getSupportFragmentManager()
.beginTransaction()
.setCustomAnimations(
R.animator.card_flip_right_in, R.animator.card_flip_right_out,
R.animator.card_flip_left_in, R.animator.card_flip_left_out)
.replace(R.id.content_fragment, new DaysSinceBirthSettingFragment())
.addToBackStack(null)
.commit();
但是当我把它改成
getActivity().getFragmentManager()
.beginTransaction()
.setCustomAnimations(
R.animator.card_flip_right_in, R.animator.card_flip_right_out,
R.animator.card_flip_left_in, R.animator.card_flip_left_out)
.replace(R.id.content_fragment, new DaysSinceBirthSettingFragment())
.addToBackStack(null)
.commit();
它工作完美。但我需要支持旧版本,所以我必须使用getSupportFragmentManager()
来自的 support-v4。
我读了一些文章说res/animator
support-v4 不支持,所以我也尝试将我的动画 XML 文件移动到res/anim
文件夹中并通过以下方式引用它R.anim.card_flip_right_in
但是还是不行,谁能告诉我怎么办?