2013-02-21 78 views
0

我嘗試了https://stackoverflow.com/a/8996581/1389581上的方法,但沒有人爲我工作。在其中心旋轉圖像

Animation animation = AnimationUtils.loadAnimation(this, R.anim.rotate_arround_center); 

     try { 
      radarView.startAnimation(animation); 
     } 
     catch(Exception ex) { 
      Log.i(ProcessActivity.str_logCaptionName_ProcessActivity, "radar animation ex : " + ex.getMessage()); 
     } 

-

<?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shareInterpolator="false" > 

    <rotate 
xmlns:android="http://schemas.android.com/apk/res/android" 
    android:fromDegrees="45" 
    android:toDegrees="45" 
    android:pivotX="50%" 
    android:pivotY="50%" 
    android:duration="1000" 
    android:startOffset="0"/> 

</set> 

給空例外。當我使用矩陣方法時,應用程序給出致命錯誤和崩潰。

我不想更改位圖。

回答