ObjectAnimator starting with a frame jump on Android 4.4 (nexus 5) but not in 4.1 device
问题 I have a simple activity that shows an animation with ObjectAnimator. The animation is created and started in onCreate method of the activity, it is a very simple animation: cloudAnim = ObjectAnimator.ofFloat(cloud1ImageView, "x", sw); cloudAnim.setDuration(35000); cloudAnim.setRepeatCount(ValueAnimator.INFINITE); cloudAnim.setRepeatMode(ValueAnimator.RESTART); cloudAnim.setInterpolator(null); cloudAnim.start(); it simply displays a cloud on the left of the screen and moves from the left to