补间动画(Tween)View Animation


一、 alpha:渐变透明度动画效果


1. 代码方式实现

AlphaAnimation alphaAnimation=new AlphaAnimation(0.1f,1.0f);
alphaAnimation.setDuration(1000);
imageView.startAnimation(alphaAnimation);
  • 第一个参数:起始透明度
  • 第二个参数:结束透明度
  • 0.0f 全透明
    1.0f 不透明

2. xml 方式实现

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" > 
    <alpha 
        android:duration="1000" 
        android:fromAlpha="0.0" 
        android:toAlpha="1.0" />
 </set>
Animation alphaAnimation=AnimationUtils.loadAnimation(this, R.anim.alpha);  //加载Xml文件中的动画
imageView.startAnimation(alphaAnimation);

二、 scale:渐变尺寸伸缩动画效果


1. 代码方式实现

ScaleAnimation scaleAnimation=new ScaleAnimation(0.0f,1.0f,0.0f,1.0f, 
                ScaleAnimation.RELATIVE_TO_SELF,1.0f,ScaleAnimation.RELATIVE_TO_SELF,0.0f);
scaleAnimation.setDuration(1000);
imageView.startAnimation(scaleAnimation);
  • 第一个参数:起始时 X坐标上的伸缩尺寸
  • 第二个参数:结束时 X坐标上的伸缩尺寸
  • 第三个参数:起始时 Y坐标上的伸缩尺寸
  • 第四个参数:结束时 Y坐标上的伸缩尺寸
  • 0.0f表示收缩到没有
    1.0f表示正常无伸缩
    值小于1.0f表示收缩
    值大于1.0f表示放大
  • 第五个参数:动画在X轴相对于物件位置类型
  • 第六个参数:动画相对于物件的X坐标的开始位置
  • 第七个参数:动画在Y轴相对于物件位置类型
  • 第八个参数:动画相对于物件的Y坐标的开始位置
  • 0.0f,0.0f 在左上角
    0.0f,1.0f 在左下角
    1.0f,1.0f 在右下角
    0.5f,0.5f 在中间

2. xml 方式实现

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" > 
    <scale 
        android:duration="1000" 
        android:fillAfter="false" 
        android:fromXScale="0.0" 
        android:fromYScale="0.0" 
        android:toXScale="1.4" 
        android:toYScale="1.4"
        android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
        android:pivotX="50%" 
        android:pivotY="50%"  />
</set>
Animation scaleAnimation=AnimationUtils.loadAnimation(this, R.anim.scale);  //加载Xml文件中的动画
imageView.startAnimation(scaleAnimation);

三、translate:画面转换位置移动动画效果


1. 代码方式实现

TranslateAnimation translateAnimation=new TranslateAnimation(0,100,0,100);
translateAnimation.setDuration(1000);
translateAnimation.setInterpolator(this, android.R.anim.cycle_interpolator);
translateAnimation.setFillAfter(true);
imageView.startAnimation(translateAnimation);
  • 第一个参数:动画起始时 X坐标上的移动位置
  • 第二个参数:**动画结束时 X坐标上的移动位置 **。
  • 第三个参数:**动画起始时 Y坐标上的移动位置 **。
  • 第四个参数:动画结束时 Y坐标上的移动位置

2. xml 方式实现

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" > 
    <translate 
        android:duration="2000" 
        android:fromXDelta="30" 
        android:fromYDelta="30" 
        android:toXDelta="-80" 
        android:toYDelta="300" /> 
</set>
Animation translateAnimation=AnimationUtils.loadAnimation(this, R.anim.translate);  //加载Xml文件中的动画
imageView.startAnimation(translateAnimation);

四、rotate:画面转移旋转动画效果


1. 代码方式实现

RotateAnimation rotateAnimation=new RotateAnimation(0.0f,360.0f, 
            Animation.RELATIVE_TO_SELF,0.0f,Animation.RELATIVE_TO_SELF, 0.5f);
rotateAnimation.setDuration(3000);
rotateAnimation.setFillAfter(true);
imageView.startAnimation(rotateAnimation);
  • 第一个参数:动画起始时的旋转角度
  • 第二个参数:动画旋转到的角度
  • 第三个参数:动画在X轴相对于物件位置类型
  • 第四个参数:动画相对于物件的X坐标的开始位置
  • 第五个参数:动画在Y轴相对于物件位置类型
  • 第六个参数:动画相对于物件的Y坐标的开始位置

2. xml 方式实现

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" > 
    <rotate 
        android:duration="3000" 
        android:fromDegrees="0" 
        android:toDegrees="350" 
        android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
        android:pivotX="50%" 
        android:pivotY="50%" /> 
</set>
Animation rotateAnimation=AnimationUtils.loadAnimation(this, R.anim.rotate);  //加载Xml文件中的动画
imageView.startAnimation(rotateAnimation);

五、通用方法


  1. setDuration(long durationMills)
    设置动画持续时间(单位:毫秒)
  2. setFillAfter(Boolean fillAfter)
    如果fillAfter的值为true,则动画执行后,控件将停留在执行结束的状态
  3. setFillBefore(Boolean fillBefore)
    如果fillBefore的值为true,则动画执行后,控件将回到动画执行之前的状态
  4. setStartOffSet(long startOffSet)
    设置动画执行之前的等待时间
  5. setRepeatCount(int repeatCount)
    设置动画重复执行的次数

六、Interpolator:动画插入器


animation.setInterpolator(this, android.R.anim.cycle_interpolator);
animation.setInterpolator(new AccelerateInterpolator());

android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
  1. AccelerateInterpolator
    加速,开始时慢中间加速
  2. DecelerateInterpolator
    减速,开始时快然后减速
  3. AccelerateDecelerateInterolator
    先加速后减速,开始结束时慢,中间加速
  4. AnticipateInterpolator
    反向,先向相反方向改变一段再加速播放
  5. AnticipateOvershootInterpolator
    反向加超越,先向相反方向改变,再加速播放,会超出目的值然后缓慢移动至目的值
  6. BounceInterpolator
    弹球效果,快到目的值时值会跳跃,如目的值100,后面的值可能依次为85,77,70,80,90,100
  7. CycleIinterpolator
    循环,动画循环一定次数,值的改变为一正弦函数:Math.sin(2 x mCycles x Math.PI x input)
  8. LinearInterpolator
    线性,线性均匀改变
  9. OvershottInterpolator
    超越,最后超出目的值然后缓慢改变到目的值

七、AnimationSet 实现多种动画混合效果


  • 同时播放,也可以给不同动画分别设置 setStartOffset() 开始偏移来顺序播放

1. 代码方式实现

AnimationSet animationSet=new AnimationSet(true);

AlphaAnimation alphaAnimation=AnimationUtils.loadAnimation(this, R.anim.alpha);
ScaleAnimation scaleAnimation=AnimationUtils.loadAnimation(this, R.anim.scale);
TranslateAnimation translateAnimation=new TranslateAnimation(0,100,0,100);
RotateAnimation rotateAnimation=new RotateAnimation(0.0f,360.0f, 
          Animation.RELATIVE_TO_SELF,0.0f,Animation.RELATIVE_TO_SELF, 0.5f);

alphaAnimation.setStartOffset(0);
scaleAnimation.setStartOffset(2000);
translateAnimation.setStartOffset(4000);
rotateAnimation.setStartOffset(6000);

animationSet.addAnimation(translateAnimation);
animationSet.addAnimation(alphaAnimation);
animationSet.addAnimation(rotateAnimation);
animationSet.addAnimation(scaleAnimation);

animationSet.setInterpolator(this, android.R.anim.anticipate_interpolator);
animationSet.setDuration(2000);
imageView.startAnimation(animationSet);

2. xml 方式实现

<?xml version="1.0" encoding="utf­8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator"
    android:shareInterpolator="true">
  
    <alpha
        android:fromAlpha="1.0"
        android:toAlpha="0.0"
        android:startOffset="500"
        android:duration="500"/>
    <translate
        android:fromXDelta="0%"
        android:toXDelta="100%"
        android:fromYDelta="0%"
        android:toYDelta="100%"
        android:duration="2000"/>
        ......
</set>    
AnimationSet animationSet=(AnimationSet) AnimationUtils.loadAnimation(this, R.anim.animset);

虽然可以通过代码的方式定义动画,但是Android官方还是建议在xml中定义动画效果,这样可做到最大程度上的解耦,方便项目的后期维护。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容