2

我在 HTC 渴望 4.0.3 上面临这个问题。动画总是进入,即使片段正在退出......这个问题在 4.4 或 5.0 上不存在

 public Animator onCreateAnimator(int transit, boolean enter, int nextAnim) {
    Animator anim;
    if (enter) {
          Log.d("Animation", "enter");
        anim = ENTER_RIGHT_ANIMATOR;
    } else {
         Log.d("Animation", "exit");
       anim = EXIT_RIGHT_ANIMATOR;
   }
    return anim;

}
4

0 回答 0