<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
android:propertyName="rotationX"
android:valueFrom="0"
android:valueTo="-360"
android:repeatCount="infinite">
</objectAnimator>
这是我的对象动画师 xml
//Animating the NormalLayout
final ObjectAnimator anim4 = (ObjectAnimator) //Object animator
AnimatorInflater.loadAnimator(this, R.animator.rotate_four);
//And this is my java code
我想在它的循环之间添加延迟,比如再次循环之间的 3 秒。我试过动画监听器onRepeat
,onEnd
有点东西,但没有奏效。我想要循环之间的一些延迟。
任何帮助将不胜感激。