Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android imageView動畫效果

Android imageView動畫效果

編輯:Android開發實例

  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:oneshot="false"> 
  4.     <item android:drawable="@drawable/black" android:duration="200" /> 
  5.     <item android:drawable="@drawable/cyan" android:duration="200" /> 
  6.     <item android:drawable="@drawable/green" android:duration="200" /> 
  7.     <item android:drawable="@drawable/magenta" android:duration="200" /> 
  8.     <item android:drawable="@drawable/navy" android:duration="200" /> 
  9.     <item android:drawable="@drawable/orange" android:duration="200" /> 
  10.     <item android:drawable="@drawable/pink" android:duration="200" /> 
  11.     <item android:drawable="@drawable/white" android:duration="200" /> 
  12.     <item android:drawable="@drawable/yellow" android:duration="200" /> 
  13. </animation-list> 
  14.  

 

 

  1.  
  2. imageView = (ImageView) findViewById(R.id.ImageButton01);  
  3.         imageView.setOnClickListener(new OnClickListener() {  
  4.  
  5.             @Override 
  6.             public void onClick(View v) {  
  7.                 AnimationDrawable animator = (AnimationDrawable) imageView.getBackground();  
  8.                 imageView.setImageDrawable(null);  
  9.                 animator.start();  
  10.             }  
  11.         });  

 

  1. / Call this method to stop the animation  
  2.     public void stopAnimation(){  
  3.         AnimationDrawable animator = (AnimationDrawable) imageView.getBackground();  
  4.         animator.stop();  
  5.         imageView.setImageResource(R.drawable.icon);  
  6.     }  

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved