-2
<?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>
這是我的目標動畫XMLObjectAnimator重複循環延遲
//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
有點東西,但它沒有奏效。我想循環之間有一些延遲。
任何幫助將被讚賞的最大限度。
在提出問題之前,請參閱[如何提問](http://stackoverflow.com/help/asking)。只要問你想要什麼,不要閒聊! –