【Android 学习之逐帧动画(Frame)】贵有恒,何必三更起、五更眠、最无益,只怕一日曝、十日寒。这篇文章主要讲述Android 学习之逐帧动画(Frame)相关的知识,希望能为你提供帮助。
帧动画就是将一些列图片。依次播放。
利用肉眼的“视觉暂留”的原理,给用户的感觉是动画的错觉,逐帧动画的原理和早期的电影原理是一样的。
a:须要定义逐帧动画,能够通过代码定义。也能够通过XML文件定义。一般XML文件定义比較直观
< ?xml version="1.0" encoding="utf-8"?> < animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> < !--false是循环播放--> < !-- drawables是每一张图片。 duration是图片持续的时间 --> < item android:drawable="@drawable/g1" android:duration="200" /> < item android:drawable="@drawable/g2" android:duration="200" /> < item android:drawable="@drawable/g3" android:duration="200" /> < item android:drawable="@drawable/g4" android:duration="200" /> < item android:drawable="@drawable/g5" android:duration="200" /> < item android:drawable="@drawable/g6" android:duration="200" /> < item android:drawable="@drawable/g7" android:duration="200" /> < item android:drawable="@drawable/g8" android:duration="200" /> < item android:drawable="@drawable/g9" android:duration="200" /> < item android:drawable="@drawable/g10" android:duration="200" /> < item android:drawable="@drawable/g11" android:duration="200" /> < /animation-list>
当中oneshot代表的是否循环播放,false是循环播放,true是仅仅播放一次
b:将上述的XMLd定义的资源,设置为ImageView的背景
//找到imageview ImageView iv = (ImageView) findViewById(R.id.iv); //将帧动画的资源文件设置为imageview的背景 iv.setBackgroundResource(R.drawable.frameanimation);
c:获得AnimationDrawable对象
//获取AnimationDrawable对象 AnimationDrawable ad = (AnimationDrawable) iv.getBackground();
d:開始播放动画就ok
//開始播放动画 ad.start();
Activity整个代码:
public class MainActivity extends Activity {@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //找到imageview ImageView iv = (ImageView) findViewById(R.id.iv); //将帧动画的资源文件设置为imageview的背景 iv.setBackgroundResource(R.drawable.frameanimation); //获取AnimationDrawable对象 AnimationDrawable ad = (AnimationDrawable) iv.getBackground(); //開始播放动画 ad.start(); } }
演示效果:
文章图片
推荐阅读
- android(如何通过自定义工程模板让新建的工程都默认支持lambda表达式)
- 如何通过SSH连接到正在运行的Docker容器并运行命令()
- Docker镜像与容器有什么区别(它们有什么关系?)
- Docker ADD与COPY有什么区别(应该该使用哪个?)
- 6个Kubernetes安全最佳方式(保护你的工作负载)
- 如何将Node.js更新到最新版本(Linux、Windows和macOS)
- 如何在Kubernetes上设置和运行Kafka(分步指南)
- Docker CMD与Entrypoint命令有什么区别(应该使用哪个?)
- Docker镜像大小(如何保持小(如何使用更小的镜像?))