2011-04-07 56 views
1

我有一個按鈕小部件,我有一個成功的旋轉動畫,但它只是回到原來的位置。我如何讓它停止?Android - 旋轉一個按鈕並停止它

這裏是我的xml旋轉:

<?xml version="1.0" encoding="UTF-8"?> 
<rotate 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:fromDegrees="0" 
    android:toDegrees="90" 
    android:pivotX="50%" 
    android:pivotY="50%" 
    android:repeatCount="0" 
    android:duration="1200" /> 

和我的Java:

Button tx = (Button)v; 
tx.startAnimation(AnimationUtils.loadAnimation(this, R.anim.rotateit)); 

回答