在onDestroy或OnDestroyView之前为片段中的视图设置动画

时间:2016-05-11 22:37:34

标签: android android-fragments android-animation ondestroy

我没有找到任何近乎相关的东西。 如何在onDestroyonDestroyView super被调用之前为视图设置动画?

我试过

@Override
public void onDestroyView() {
    Animation fadeOut = AnimationUtils.loadAnimation(getContext(), R.anim.fade_out_fast);
    mBackgroundView.setAnimation(fadeOut);
    super.onDestroyView();
}

这样super.onDestroyView立即停止动画。

将监听器设置为fadeOut,然后调用MyFrag.super.onDestroyView() onAnimationEnd()也不起作用,因为必须在方法本身内调用super。

我该如何解决?提前谢谢!

0 个答案:

没有答案