Frame animation

Posted Tekkaman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Frame animation相关的知识,希望对你有一定的参考价值。

Frame animation

  An animation defined in XML that shows a sequence of images in order (like a film).

    res/drawable/filename.xml

  Resource pointer to an AnimationDrawable.

    In Java: R.drawable.filename

  

  XML file saved at res/anim/rocket.xml:

  

  This application code will set the animation as the background for a View, then play the animation:

ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image);
rocketImage.setBackgroundResource(R.drawable.rocket_thrust);
rocketAnimation = (AnimationDrawable) rocketImage.getBackground();
rocketAnimation.start();

 

参考:http://android.xsoftlab.net/guide/topics/resources/animation-resource.html#Frame

以上是关于Frame animation的主要内容,如果未能解决你的问题,请参考以下文章

NSWindow 宽度未使用 setFrame(frame, display, animate) 更新

Animation Frame动画实现应用的欢迎界面

谈UIView Animation编程艺术

Android动画效果之Frame Animation(逐帧动画)

Unity中获取Animator中动画片段的时长

mouseenter()+ animate()的jquery问题[重复]