• Android 动画


    1.动画分类

    补间动画View Animation:图形变换 (包括平移、缩放、旋转、改变透明度)

    分为AlphaAnimation、 TranslateAnimation、RotateAnimation、ScaleAnimation

    android:duration 动画持续时间,以毫秒为单位
    android:fillAfter 如果设置为true,控件动画结束时,将保持动画最后时的状态
    android:fillBefore 如果设置为true,控件动画结束时,还原到开始动画前的状态
    android:fillEnabled 与android:fillBefore 效果相同,都是在动画结束时,将控件还原到初始化状态
    android:repeatCount 重复次数
    android:repeatMode 重复类型,有reverse和restart两个值,reverse表示倒序回放,restart表示重新放一遍,必须与repeatCount一起使用才能看到效果。因为这里的意义是重复的类型,即回放时的动作。
    android:interpolator 设定插值器,其实就是指定的动作效果,比如弹跳效果等,

    使用 1.代码使用

    1. AlphaAnimation alphaAnimation = new AlphaAnimation(1,0.1f);
    2. alphaAnimation.setDuration(2000); 动画持续时间
    3. alphaAnimation.setFillAfter(true); 动画结束后不返回起始位置
    4. button.startAnimation(alphaAnimation);开启动画

    2.xml使用 

    res/anim/filename.xml

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <set xmlns:android="http://schemas.android.com/apk/res/android" android:duration="2000" android:fillAfter="true" android:repeatMode="restart">
    3. <translate android:fromXDelta="100" android:fromYDelta="100" android:toXDelta="120" android:toYDelta="120"/>
    4. <alpha android:fromAlpha="10" android:toAlpha="12" />
    5. </set>

     java代码里加载xml文件

    1. Animation animation = AnimationUtils.loadAnimation(this,R.anim.alpha);
    2. button.startAnimation(animation);

    帧动画Drawable Animation:播放一组图片,形成动画

    AnimationDrawable的start()方法不能在Activity的onCreate方法中调运,因为AnimationDrawable还未完全附着到window上,所以最好的调运时机是onWindowFocusChanged()方法中。

    使用

    res/drawable/filename.xml

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <!-- oneshot="true" 表示动画只播放一次,播放完成后停止在最后一帧 oneshot="false" 表示动画循环播放-->
    3. <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true">
    4. <item android:drawable="@drawable/ic_launcher_background" android:duration="200"/>
    5. <item android:drawable="@drawable/ic_launcher_background" android:duration="200"/>
    6. <item android:drawable="@drawable/ic_launcher_background" android:duration="200"/>
    7. <item android:drawable="@drawable/ic_launcher_background" android:duration="200"/>
    8. </animation-list>
    1. // 将帧动画xml 设置为控件的背景
    2. button.setBackgroundResource(R.drawable.frameanmi);
    3. // 将控件的背景转换为AnimationDrawable
    4. AnimationDrawable animationDrawable = (AnimationDrawable) button.getBackground();
    5. // 开启动画
    6. animationDrawable.start();

    属性动画 Property Animation :通过修改控件的属性值实现动画效果。

    res/animator/filename.xml

    1. <set
    2. android:ordering=["together" | "sequentially"]>
    3. <objectAnimator
    4. android:propertyName="string"
    5. android:duration="int"
    6. android:valueFrom="float | int | color"
    7. android:valueTo="float | int | color"
    8. android:startOffset="int"
    9. android:repeatCount="int"
    10. android:repeatMode=["repeat" | "reverse"]
    11. android:valueType=["intType" | "floatType"]/>
    12. <animator
    13. android:duration="int"
    14. android:valueFrom="float | int | color"
    15. android:valueTo="float | int | color"
    16. android:startOffset="int"
    17. android:repeatCount="int"
    18. android:repeatMode=["repeat" | "reverse"]
    19. android:valueType=["intType" | "floatType"]/>
    20. <set>
    21. ...
    22. </set>
    23. </set>

    属性解释:

    xml属性解释
    android:ordering控制子动画启动方式是先后有序的还是同时进行。sequentially:动画按照先后顺序;together(默认):动画同时启动;

    属性解释:

    xml属性解释
    android:propertyNameString类型,必须要设置的节点属性,代表要执行动画的属性(通过名字引用),辟如你可以指定了一个View的”alpha” 或者 “backgroundColor” ,这个objectAnimator元素没有对外说明target属性,所以你不能在XML中设置执行这个动画,必须通过调用 loadAnimator()方法加载你的XML动画资源,然后调用setTarget()应用到具备这个属性的目标对象上(譬如TextView)。
    android:valueTofloat、int或者color类型,必须要设置的节点属性,表明动画结束的点;如果是颜色的话,由6位十六进制的数字表示。
    android:valueFrom相对应valueTo,动画的起始点,如果没有指定,系统会通过属性的get方法获取,颜色也是6位十六进制的数字表示。
    android:duration动画的时长,int类型,以毫秒为单位,默认为300毫秒。
    android:startOffset动画延迟的时间,从调用start方法后开始计算,int型,毫秒为单位。
    android:repeatCount一个动画的重复次数,int型,”-1“表示无限循环,”1“表示动画在第一次执行完成后重复执行一次,也就是两次,默认为0,不重复执行。
    android:repeatMode重复模式:int型,当一个动画执行完的时候应该如何处理。该值必须是正数或者是-1,“reverse”会使得按照动画向相反的方向执行,可实现类似钟摆效果。“repeat”会使得动画每次都从头开始循环。
    android:valueType关键参数,如果该value是一个颜色,那么就不需要指定,因为动画框架会自动的处理颜色值。有intType和floatType(默认)两种:分别说明动画值为int和float型。

    1. AnimatorSet animatorSet = (AnimatorSet) AnimatorInflater.loadAnimator(this,R.animator.property);
    2. animatorSet.setTarget(button);
    3. animatorSet.start();

    1、ObjectAnimator:继承自ValueAnimator,允许你指定要进行动画的对象以及该对象 的一个属性。该类会根据计算得到的新值自动更新属性。大多数的情况使用ObjectAnimator就足够了,因为它使得目标对象动画值的处理过程变得足 够简单,不用像ValueAnimator那样自己写动画更新的逻辑,但是ObjectAnimator有一定的限制,比如它需要目标对象的属性提供指定 的处理方法(譬如提供getXXX,setXXX方法),这时候你就需要根据自己的需求在ObjectAnimator和ValueAnimator中看 哪种实现更方便了。

    1. //继承自ValueAnimator,允许你指定要进行动画的对象以及该对象 的一个属性
    2. ObjectAnimator objectAnimator = ObjectAnimator.ofInt(button, "customerDefineAnyThingName", 0, 1).setDuration(2000);
    3. objectAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
    4. @Override
    5. public void onAnimationUpdate(ValueAnimator animation) {
    6. }
    7. });

    2、PropertyValuesHolder:多属性动画同时工作管理类。有时候我们需要同时修改多个属性,那就可以用到此类,

    1. PropertyValuesHolder propertyValuesHolder = PropertyValuesHolder.ofFloat("alpha", 0f, 1f);
    2. PropertyValuesHolder propertyValuesHolder1 = PropertyValuesHolder.ofFloat("alpha", 0f, 2f);
    3. ObjectAnimator.ofPropertyValuesHolder(button, propertyValuesHolder, propertyValuesHolder1).setDuration(1000).start();

  • 相关阅读:
    第一个接受素数定理的人
    Xilinx FFT使用说明和测试
    KY90 简单密码
    web前端期末大作业 :HTML+CSS+JavaScript+Bootstrap实现响应式网站潮酷音乐网站
    Python 读pdf数据写入Excel表中
    【leetcode】【初级算法】【链表5】回文链表
    Spring MVC - 相关内容3
    决策树与随机森林
    计算机毕业设计之java+springcloud基于vue的智慧养老平台-老人信息管理-敬老院管理系统
    工程管理系统简介 工程管理系统源码 java工程管理系统 工程管理系统功能设计
  • 原文地址:https://blog.csdn.net/xiaowang_lj/article/details/126918997