android-Animation
1. Tween Animation:通过对场景里的对象不断做图像变换(alpha , 平移、缩放、旋转)产生动画效果,即是一种渐变动画
xml
alpha 渐变透明度动画效果
scale 渐变尺寸伸缩动画效果
translate
画面转换位置移动动画效果
rotate 画面转移旋转动画效果
在Java
AlphaAnimation渐变透明度动画效果
ScaleAnimation渐变尺寸伸缩动画效果
TranslateAnimation画面转换位置移动动画效果
RotateAnimation画面转移旋转动画效果
多调用:
xml
set
Frame Animation是顺序播放事先做好的图像,跟电影类似
xml
<animation-listxmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<itemandroid:drawable="@drawable/rocket_thrust1"android:duration="200"/>
<itemandroid:drawable="@drawable/rocket_thrust2"android:duration="200"/>
<itemandroid:drawable="@drawable/rocket_thrust3"android:duration="200"/>
</animation-list>
code:
AnimationDrawable
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。