android Frame-By-Frame Animations(一幀一幀地播放動畫)的使用

來源:互聯網
上載者:User

程式功能,點擊按鈕時,圖片一張一張迴圈播放:

直接來代碼:

AppMain.java

[java] view plaincopy

  1. package lxy.litsoft; 
  2. import android.app.Activity; 
  3. import android.graphics.drawable.AnimationDrawable; 
  4. import android.os.Bundle; 
  5. import android.view.View; 
  6. import android.view.View.OnClickListener; 
  7. import android.widget.Button; 
  8. import android.widget.ImageView; 
  9. public class AppMain extends Activity { 
  10. //聲明對象
  11.     ImageView disPic; 
  12.     Button btDis; 
  13. public void onCreate(Bundle savedInstanceState) { 
  14. super.onCreate(savedInstanceState); 
  15.         setContentView(R.layout.main); 
  16. //執行個體化對象
  17.         disPic = (ImageView)findViewById(R.id.imageView01); 
  18.         btDis = (Button)findViewById(R.id.button01); 
  19. //綁定監聽器
  20.         btDis.setOnClickListener(new ButtonListener()); 
  21.     } 
  22. //按鈕的監聽器實現
  23. class ButtonListener implements OnClickListener{ 
  24. public void onClick(View v) { 
  25. //動畫播放
  26.             disPic.setBackgroundResource(R.drawable.anim); 
  27.             AnimationDrawable animationDrawable = (AnimationDrawable)disPic.getBackground(); 
  28.             animationDrawable.start(); 
  29.         } 
  30.     } 

main.xml

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent" >
  6. <TextView
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="@string/hello"/>
  10. <ImageView
  11. android:id="@+id/imageView01"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"></ImageView>
  14. <Button
  15. android:id="@+id/button01"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:text="Anim"></Button>
  19. </LinearLayout>

res/drawable/anim.xml

[html] view plaincopy

  1. <animation-list
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:oneshot="false">
  4. <item android:drawable="@drawable/p30"
  5. android:duration="300"/>
  6. <item android:drawable="@drawable/p31"
  7. android:duration="300"/>
  8. <item android:drawable="@drawable/p32"
  9. android:duration="300"/>
  10. <item android:drawable="@drawable/p33"
  11. android:duration="300"/>
  12. <item android:drawable="@drawable/p34"
  13. android:duration="300"/>
  14. <item android:drawable="@drawable/p35"
  15. android:duration="300"/>
  16. <item android:drawable="@drawable/p36"
  17. android:duration="300"/>
  18. <item android:drawable="@drawable/p37"
  19. android:duration="300"/>
  20. </animation-list>

其中每一個item就是一幀的資源,android:drawable是圖片資源,android:duration是每一幀的顯示時間。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.