Android Tween Animation 补间动画
Android Tween Animation ( 补间动画 ) 只需指定 动画开始 ,以及 动画结束 "关键帧", 而动画变化的 "中间帧" 则由系统计算并补齐
补间动画的分类
Andoird 所支持的补间动画效果有如下这五种
动画效果 | 说明 |
---|---|
AlphaAnimation | 透明度渐变效果,创建时许指定开始以及结束透明度,还有动画的持续时间,透明度的变化范围(0,1),0 是完全透明,1 是完全不透明;对应 <alpha/> 标签 |
ScaleAnimation | 缩放渐变效果,创建时需指定开始以及结束的缩放比,以及缩放参考点,还有动画的持续时间;对应 <scale/> 标签 |
TranslateAnimation | 位移渐变效果,创建时指定起始以及结束位置,并指定动画的持续时间即可;对应 <translate*/> 标签 |
RotateAnimation | 旋转渐变效果,创建时指定动画起始以及结束的旋转角度,以及动画持续时间和旋转的轴心;对应 <rotate/> 标签 |
AnimationSet | 组合渐变,就是前面多种渐变的组合,对应 <set/> 标签 |
Interpolator 补间器
Interpolator 用来控制动画的变化速度, 可以理解成动画渲染器
Android 提供了五个可供选择的实现类
补间器 | 说明 |
---|---|
LinearInterpolator | 动画以均匀的速度改变 |
AccelerateInterpolator | 在动画开始的地方改变速度较慢,然后开始加速 |
AccelerateDecelerateInterpolator | 在动画开始、结束的地方改变速度较慢,中间时加速 |
CycleInterpolator | 动画循环播放特定次数,变化速度按正弦曲线改变 |
DecelerateInterpolator | 在动画开始的地方改变速度较快,然后开始减速 |
AnticipateInterpolator | 反向,先向相反方向改变一段再加速播放 |
AnticipateOvershootInterpolator | 开始的时候向后然后向前甩一定值后返回最后的值 |
BounceInterpolator | 跳跃,快到目的值时值会跳跃,如目的值100,后面的值可能依次为85,77,70,80,90,100 |
OvershottInterpolator | 回弹,最后超出目的值然后缓慢改变到目的值 |
补间器一般在写 xml
动画文件的时候会用到,属性是: android:interpolator
,
而上面对应的值是: @android:anim/linear_interpolator
其实就是驼峰命名法变下划线而已 AccelerateDecelerateInterpolator
对应:@android:anim/accelerate_decelerate_interpolator
AlphaAnimation 透明度渐变
<alpha xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fromAlpha="1.0" android:toAlpha="0.1" android:duration="2000"/>
属性 | 说明 |
---|---|
android:fromAlpha | 起始透明度 |
android:toAlpha | 结束透明度透明度的范围为:0-1,完全透明-完全不透明 |
android:duration | 动画持续时间 |
android:interpolator | 补间器 |
ScaleAnimation 缩放渐变
<scale xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromXScale="0.2" android:toXScale="1.5" android:fromYScale="0.2" android:toYScale="1.5" android:pivotX="50%" android:pivotY="50%" android:duration="2000"/>
属性 | 说明 |
---|---|
android:fromXScale | 沿着X轴缩放的起始比例 |
android:fromYScale | 沿着Y轴缩放的起始比例 |
android:toXScale | 沿着X轴缩放的结束比例 |
android:toXScale | 沿着Y轴缩放的结束比例 |
android:pivotX | 缩放的中轴点 X 坐标,即距离自身左边缘的位置,比如50%就是以图像的中心为中轴点 |
android:pivotY | 缩放的中轴点 Y 坐标,即距离自身左边缘的位置,比如50%就是以图像的中心为中轴点 |
android:duration | 动画持续时间 |
android:interpolator | 补间器 |
TranslateAnimation 位移渐变
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fromXDelta="0" android:toXDelta="320" android:fromYDelta="0" android:toYDelta="0" android:duration="2000"/>
属性 | 说明 |
---|---|
android:duration | 动画持续时间 |
android:interpolator | 补间器 |
android:fromXDelta | 动画起始位置的 X 坐标 |
android:fromYDelta | 动画起始位置的 Y 坐标 |
android:toXDelta | 动画结束位置的 X 坐标 |
android:toYDelta | 动画结束位置的 Y 坐标 |
RotateAnimation 旋转渐变
<rotate xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fromDegrees="0" android:toDegrees="360" android:duration="1000" android:repeatCount="1" android:repeatMode="reverse"/>
属性 | 说明 |
---|---|
android:duration | 动画持续时间 |
android:interpolator | 补间器 |
android:fromDegrees | 旋转的起始角度 |
android:toDegrees | 旋转的结束角度 |
android:repeatCount | 旋转的次数,默认值为0,代表一次,假如是其他值,比如3,则旋转4次另外,值为-1或者infinite时,表示动画永不停止 |
android:repeatMode | 设置重复模式,默认 restart ,但只有当repeatCount大于0或者infinite或-1时才有效。还可以设置成 reverse ,表示偶数次显示动画时会做方向相反的运动! |
AnimationSet (组合渐变)
就是将几个动画组合到一起
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/decelerate_interpolator" android:shareInterpolator="true" > <scale android:duration="2000" android:fromXScale="0.2" android:fromYScale="0.2" android:pivotX="50%" android:pivotY="50%" android:toXScale="1.5" android:toYScale="1.5" /> <rotate android:duration="1000" android:fromDegrees="0" android:repeatCount="1" android:repeatMode="reverse" android:toDegrees="360" /> <translate android:duration="2000" android:fromXDelta="0" android:fromYDelta="0" android:toXDelta="320" android:toYDelta="0" /> <alpha android:duration="2000" android:fromAlpha="1.0" android:toAlpha="0.1" /> </set>
范例
-
创建一个 空的 Android 项目
cn.twle.android.TweenAnim
-
右键点击
app
,选择Android Resource Directory
然后选择anim
创建res/anim
文件夹,然后下载 tween_anim.zip 解压并把所有的动画文件拖到res/anim
目录下里面的文件和动画效果是一一对应的,其实你也可以自己写
-
修改 activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <Button android:id="@+id/btn_alpha" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="透明度渐变" /> <Button android:id="@+id/btn_scale" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="缩放渐变" /> <Button android:id="@+id/btn_tran" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="位移渐变" /> <Button android:id="@+id/btn_rotate" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="旋转渐变" /> <Button android:id="@+id/btn_set" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="组合渐变" /> <TextView android:id="@+id/ms_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="48dp" android:text="简单教程,简单编程"/> </LinearLayout>
-
修改 MainActivity.java
调用
AnimationUtils.loadAnimation()
加载动设定 View 控件调用
startAnimation()
开启动画package cn.twle.android.tweenanim; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity implements View.OnClickListener{ private Button btn_alpha; private Button btn_scale; private Button btn_tran; private Button btn_rotate; private Button btn_set; private TextView ms_text; private Animation animation = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn_alpha = (Button) findViewById(R.id.btn_alpha); btn_scale = (Button) findViewById(R.id.btn_scale); btn_tran = (Button) findViewById(R.id.btn_tran); btn_rotate = (Button) findViewById(R.id.btn_rotate); btn_set = (Button) findViewById(R.id.btn_set); ms_text = (TextView) findViewById(R.id.ms_text); btn_alpha.setOnClickListener(this); btn_scale.setOnClickListener(this); btn_tran.setOnClickListener(this); btn_rotate.setOnClickListener(this); btn_set.setOnClickListener(this); } @Override public void onClick(View v) { switch (v.getId()){ case R.id.btn_alpha: animation = AnimationUtils.loadAnimation(this, R.anim.anim_alpha); ms_text.startAnimation(animation); break; case R.id.btn_scale: animation = AnimationUtils.loadAnimation(this, R.anim.anim_scale); ms_text.startAnimation(animation); break; case R.id.btn_tran: animation = AnimationUtils.loadAnimation(this, R.anim.anim_translate); ms_text.startAnimation(animation); break; case R.id.btn_rotate: animation = AnimationUtils.loadAnimation(this, R.anim.anim_rotate); ms_text.startAnimation(animation); break; case R.id.btn_set: animation = AnimationUtils.loadAnimation(this, R.anim.anim_set); ms_text.startAnimation(animation); break; } } }