0
在我的android項目中,我有一個圖像,我想旋轉它並長時間創建動畫。 我可以運行程序,它工作正常。但我不知道我該如何阻止它。如果你知道,請告訴我。Android,停止動畫的問題
感謝
這是我的代碼,我有兩個項目的菜單,當我點擊啓動項目,startAnimation功能運行,當我點擊停止項目,stopAnimation運行:
public class Hypnagogic extends Activity
{
ImageView imView;
Animation an;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
imView = (ImageView)findViewById(R.id.imView);
}
private void startAnimation()
{
an = AnimationUtils.loadAnimation(this, R.anim.spin);
imView.startAnimation(an);
}
private void stopAnimation()
{
;//there is no any stop function!
}
}
也,在res /阿尼姆我把spin.xml這是我的動畫
<?xml version="1.0" encoding="utf-8"?>
<set>
<rotate
android:fromDegrees="0"
android:toDegrees="-18000"
android:pivotX="50%"
android:pivotY="50%"
android:duration="50000" />
</set>
謝謝親愛的kcoppock,我編輯了我的問題,請看看。謝謝 – Hesam 2011-01-07 15:53:37