Android單幀動畫Rotate旋轉

項目有一個需求,有一個刷新按鈕,上面放着一個常見的靜止的刷新圓圈,如下圖:

 

一旦用戶按了刷新按鈕,需要讓這個刷新圓圈轉動起來,讓用戶感覺到程序還在運行着,而不是卡死了。

 

有兩個思路,一是將這個圖按照旋轉時間不同旋轉成不同旋轉角度的圖片,就像要做一張gif圖片一樣,例如我要每次旋轉30度,就需要360\30=12張圖片,然後再anim文件夾下新建xml文件,內容如下:

 

Xml代碼  收藏代碼
  1. <animation-list xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:oneshot="true">  
  3.     <item android:drawable="@drawable/rocket_thrust1" android:duration="200" />  
  4.     <item android:drawable="@drawable/rocket_thrust2" android:duration="200" />  
  5.     <item android:drawable="@drawable/rocket_thrust3" android:duration="200" />  
  6. </animation-list>  

 

 

在代碼中這樣寫:

 

Java代碼  收藏代碼
  1. AnimationDrawable rocketAnimation;  
  2.   
  3. public void onCreate(Bundle savedInstanceState) {  
  4.   super.onCreate(savedInstanceState);  
  5.   setContentView(R.layout.main);  
  6.   
  7.   ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image);  
  8.   rocketImage.setBackgroundResource(R.anim.rocket_thrust);  
  9.   rocketAnimation = (AnimationDrawable) rocketImage.getBackground();  
  10. }  
  11.   
  12. public boolean onTouchEvent(MotionEvent event) {  
  13.   if (event.getAction() == MotionEvent.ACTION_DOWN) {  
  14.     rocketAnimation.start();  
  15.     return true;  
  16.   }  
  17.   return super.onTouchEvent(event);  
  18. }  

 

具體代碼含義參考:http://www.cnblogs.com/feisky/archive/2010/01/11/1644482.html

 

 

這種做法其實就是將每一幀圖片都顯示了一次,但是由於需要更多圖片,文件體積會上升。

 

於是想到用rotate做單幀圖片旋轉,查到的資料:http://rainbowsu.iteye.com/blog/766608

 

但是作者沒能實現循環旋轉,我嘗試了下,修改了下anim文件的格式,成功了

 

Xml代碼  收藏代碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <rotate xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/linear_interpolator"  
  3.     android:fromDegrees="0" android:toDegrees="+360" android:duration="1000"  
  4.     android:pivotX="50%" android:pivotY="50%" android:repeatCount="infinite" />  

 

 

其中android:duration="1000"表示旋轉速率是1秒鐘。

 

代碼:

 

Java代碼  收藏代碼
  1. package info.wegosoft;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.animation.Animation;  
  6. import android.view.animation.AnimationUtils;  
  7.   
  8. public class LoadingAnimationTest extends Activity {  
  9.     /** Called when the activity is first created. */  
  10.     @Override  
  11.     public void onCreate(Bundle savedInstanceState) {  
  12.         super.onCreate(savedInstanceState);  
  13.         setContentView(R.layout.main);  
  14.           
  15.         Animation anim = AnimationUtils.loadAnimation(this, R.anim.round_loading);      
  16.           
  17.         findViewById(R.id.loadingBtn).startAnimation(anim);     
  18.     }  
  19. }  

 

佈局文件:

 

Java代碼  收藏代碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical" android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent">  
  5.     <Button android:id="@+id/loadingBtn" android:layout_width="wrap_content"  
  6.         android:layout_height="wrap_content" android:background="@drawable/refresh_normal"></Button>  
  7. </LinearLayout>  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章