自定义控件三部曲之动画篇(四)——ValueAnimator基本使用

自定义控件三部曲之动画篇(四)——ValueAnimator基本使用,第1张

概述一、概述前面,我写过几篇有关Animation的文章,讲解了传统的alpha、scale、translate、rotate的用法及代码生成方法。其实这三篇文章讲的所有动画效果叫做Tween Animation(补间动画)在Android动画中,总共有两种类型的动画View Animation(视图动画)和Property Animator(属性动画);其中View Animation包括Tween Animation(补间动画)和Frame Animation(逐帧动画); Propert. 一、概述

前面,我写过几篇有关Animation的文章,讲解了传统的Alpha、scale、translate、rotate的用法及代码生成方法。其实这三篇文章讲的所有动画效果叫做Tween Animation(补间动画)

在AndroID动画中,总共有两种类型的动画VIEw Animation(视图动画)和Property Animator(属性动画);

其中

VIEw Animation包括Tween Animation(补间动画)和Frame Animation(逐帧动画); Property Animator包括ValueAnimator和ObjectAnimation;

首先,直观上,他们有如下三点不同:
1、引入时间不同:VIEw Animation是API Level 1就引入的。Property Animation是API Level 11引入的,即AndroID 3.0才开始有Property Animation相关的API。

2、所在包名不同:VIEw Animation在包androID.vIEw.animation中。而Property Animation API在包 androID.animation中。

3、动画类的命名不同:VIEw Animation中动画类取名都叫XXXXAnimation,而在Property Animator中动画类的取名则叫XXXXAnimator

大家都知道逐帧动画主要是用来实现动画的,而补间动画才能实现控件的渐入渐出、移动、旋转和缩放的;而Property Animator是在AndroID 3.0版本才引入的,之前是没有的。大家可能会觉得补间动画和逐帧动画已经很全了,为什么还要引入Property Animator呢?

1、为什么引入Property Animator(属性动画)

我提出一个假设:请问大家,如何利用补间动画来将一个控件的背景色在一分钟内从绿色变为红色?这个效果想必没办法仅仅通过改变控件的渐入渐出、移动、旋转和缩放来实现吧,而这个效果是可以通过Property Animator完美实现的
这就是第一个原因:Property Animator能实现补间动画无法实现的功能

大家都知道,补间动画和逐帧动画统称为VIEw Animation,也就是说这两个动画只能对派生自VIEw的控件实例起作用;而Property Animator则不同,从名字中可以看出属性动画,应该是作用于控件属性的!正因为属性动画能够只针对控件的某一个属性来做动画,所以也就造就了他能单独改变控件的某一个属性的值!比如颜色!这就是Property Animator能实现补间动画无法实现的功能的最重要原因。

我们得到了第二点不同:VIEw Animation仅能对指定的控件做动画,而Property Animator是通过改变控件某一属性值来做动画的。


假设我们将一个按钮从左上角利用补间动画将其移动到右下角,在移动过程中和移动后,这个按钮都是不会响应点击事件的。这是为什么呢?因为补间动画仅仅转变的是控件的显示位置而已,并没有改变控件本身的值。VIEw Animation的动画实现是通过其Parent VIEw实现的,在VIEw被drawn时Parents VIEw改变它的绘制参数,这样虽然VIEw的大小或旋转角度等改变了,但VIEw的实际属性没变,所以有效区域还是应用动画之前的区域;我们看到的效果仅仅是系统作用在按钮上的显示效果,利用动画把按钮从原来的位置移到了右下角,但按钮内部的任何值是没有变化的,所以按钮所捕捉的点击区域仍是原来的点击区域。(下面会举例来说明这个问题)
这就得到了第三点不同:补间动画虽能对控件做动画,但并没有改变控件内部的属性值。而Property Animator则是恰恰相反,Property Animator是通过改变控件内部的属性值来达到动画效果的
 

2、举例说明补间动画的点击区域问题

下面我们就利用TranslateAnimation来做一个移动动画的例子,看它的点击区域是否会变。
我们先来看看效果:

在效果图中,首先,我给textvIEw添加了点击响应,当点击textvIEw时,会d出Toast。
然后,当我点击按钮的时候,textvIEw开始向右下角移动。
从结果中可以看出,在移动前,点击textvIEw是可以d出toast的的,在移动后,点击textvIEw时则没有响应,相反,点击textvIEw的原来所在区域则会d出toast.

这就论证了不同第三点:补间动画虽能对控件做动画,但并没有改变控件内部的属性值
下面简单看看这个动画的实现代码吧:

(1)、看布局(main.xml)

从效果图中也可以看出,布局很简单,一个button,一个textvIEw,垂直排列,布局代码如下:

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"              androID:orIEntation="vertical"              androID:layout_wIDth="fill_parent"              androID:layout_height="fill_parent">     <button            androID:ID="@+ID/btn"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:padding="10dp"            androID:text="start anim"            />    <TextVIEw            androID:ID="@+ID/tv"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:padding="10dp"            androID:background="#ffff00"            androID:text="Hello qijian"/></linearLayout>

(2)JAVA代码(MyActivity.java)

接下来是 *** 作代码,就是分别给button和textvIEw添加上点击响应,当点击textvIEw时d出toast,点击button时,textvIEw使用移动。
代码如下:

public class MyActivity extends Activity {    @OverrIDe    public voID onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentVIEw(R.layout.main);         final TextVIEw tv  = (TextVIEw) findVIEwByID(R.ID.tv);        button btn  = (button)findVIEwByID(R.ID.btn);         btn.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                final TranslateAnimation animation = new TranslateAnimation(Animation.absolute,Animation.absolute,400,400);                animation.setFillAfter(true);                animation.setDuration(1000);                tv.startAnimation(animation);            }        });          tv.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                Toast.makeText(MyActivity.this,"clicked me",Toast.LENGTH_SHORT).show();            }        });     }}

这段代码很容易理解,这里就不再细讲了。

 

二、ValueAnimator简单使用

我们前面讲了Property Animator包括ValueAnimator和ObjectAnimator;这篇文章就主要来看看ValueAnimator的使用方法吧。
我觉得谷歌那帮老头是最会起名字的人,单从命名上,就能看出来这个东东的含义。ValueAnimator从名字可以看出,这个Animation是针对值的!ValueAnimator不会对控件做任何 *** 作,我们可以给它设定从哪个值运动到哪个值,通过监听这些值的渐变过程来自己 *** 作控件。以前我们曾讲过Scroller类,Scroller类也是不会对控件 *** 作的,也是通过给他设定滚动值和时长,它会自己计算滚动过程,然后我们需要监听它的动画过程来自己 *** 作控件,ValueAnimator的原理与Scroller类相似。
 

1、初步使用ValueAnimator

要使用ValueAnimaiton,总共有两步:

第一步:创建ValueAnimator实例

ValueAnimator animator = ValueAnimator.ofInt(0,400);animator.setDuration(1000);animator.start();

在这里我们利用ValueAnimator.ofInt创建了一个值从0到400的动画,动画时长是1s,然后让动画开始。从这段代码中可以看出,ValueAnimator没有跟任何的控件相关联,那也正好说明ValueAnimator只是对值做动画运算,而不是针对控件的,我们需要监听ValueAnimator的动画过程来自己对控件做 *** 作。

第二步:添加监听

上面的三行代码,我们已经实现了动画,下面我们就添加监听:

ValueAnimator animator = ValueAnimator.ofInt(0,400);animator.setDuration(1000); animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {    @OverrIDe    public voID onAnimationUpdate(ValueAnimator animation) {        int curValue = (int)animation.getAnimatedValue();        Log.d("qijian","curValue:"+curValue);    }});animator.start();

在上面的代码中,我们通过addUpdateListener添加了一个监听,在监听传回的结果中,是表示当前状态的ValueAnimator实例,我们通过animation.getAnimatedValue()得到当前值。然后通过Log打印出来,结果如下:

这就是ValueAnimator的功能:ValueAnimator对指定值区间做动画运算,我们通过对运算过程做监听来自己 *** 作控件。
总而言之就是两点:

ValueAnimator只负责对指定的数字区间进行动画运算我们需要对运算过程进行监听,然后自己对控件做动画 *** 作2、实例使用ValueAnimator

这段,我们就使用上面我们讲到的ValueAnimator做一个动画:
我们先看看效果图:

首先这个动画的布局与上一个实例是一样的。但实现的效果确不大相同:

首先,点击按钮后,textvIEw从屏幕(0,0)点运动到(400,400)点运动前后,textvIEw都是可以响应点击事件的 

下面我们就来看看这里如何利用ValueAnimator来实现这个效果的。

1、布局(main.xml)

布局代码与上个例子相同:垂直布局按钮控件和textvIEw

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"              androID:orIEntation="vertical"              androID:layout_wIDth="fill_parent"              androID:layout_height="fill_parent">     <button            androID:ID="@+ID/btn"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:padding="10dp"            androID:text="start anim"            />    <TextVIEw            androID:ID="@+ID/tv"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:padding="10dp"            androID:background="#ffff00"            androID:text="Hello qijian"/></linearLayout>

2、JAVA *** 作

首先,是对textvIEw和btn添加点击响应,当点击textvIEw时,d出toast;点击btn时,textvIEw开始做动画

public class MyActivity extends Activity {    private TextVIEw tv;    private button btn;     @OverrIDe    public voID onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentVIEw(R.layout.main);        tv = (TextVIEw) findVIEwByID(R.ID.tv);         btn = (button) findVIEwByID(R.ID.btn);        btn.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                doAnimation();            }        });         tv.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                Toast.makeText(MyActivity.this,Toast.LENGTH_SHORT).show();            }        });    }    …………}

这段代码很简单,在点击btn的时候执行 doAnimation()来执行动画 *** 作,在点击tv的时候,d出toast;
下面来看看 doAnimation()的具体实现:

private voID doAnimation(){    ValueAnimator animator = ValueAnimator.ofInt(0,400);    animator.setDuration(1000);     animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {        @OverrIDe        public voID onAnimationUpdate(ValueAnimator animation) {            int curValue = (int)animation.getAnimatedValue();            tv.layout(curValue,curValue,curValue+tv.getWIDth(),curValue+tv.getHeight());        }    });    animator.start();}

首先,我们构造一个ValueAnimator实例,让其计算的值是从0到400;
然后添加对计算过程进行监听:

animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {    @OverrIDe    public voID onAnimationUpdate(ValueAnimator animation) {        int curValue = (int)animation.getAnimatedValue();        tv.layout(curValue,curValue+tv.getHeight());    }});

在监听过程中,通过layout函数来改变textvIEw的位置。这里注意了,我们是通过layout函数来改变位置的,我们知道layout函数在改变控件位置时是永久性的,即通过更改控件left,top,right,bottom这四个点的坐标来改更改坐标位置的,而不仅仅是从视觉上画在哪个位置,所以通过layout函数更改位置后,控件在新位置是可以响应点击事件的。
大家可能注意到了,layout()函数中上下左右点的坐标是以屏幕坐标来标准的。所以在效果图中可以看到,textvIEw的运动轨迹是从屏幕的左上角(0,0)点运行到(400,400)点。

 

三、常用方法

经过上面的例子,我们就大概知道ValueAnimator要怎么使用了,下面我们就来具体来看看它还有哪些常用的方法吧。

1、ofInt与offloat

在上面的例子中,我们使用了ofInt函数,与它同样功能的还有一个函数叫offloat,下面我们先看看他们的具体声明:

public static ValueAnimator ofInt(int... values)public static ValueAnimator offloat(float... values)

他们的参数类型都是可变参数长参数,所以我们可以传入任何数量的值;传进去的值列表,就表示动画时的变化范围;比如ofInt(2,90,45)就表示从数值2变化到数字90再变化到数字45;所以我们传进去的数字越多,动画变化就越复杂。从参数类型也可以看出ofInt与offloat的唯一区别就是传入的数字类型不一样,ofInt需要传入Int类型的参数,而offloat则表示需要传入float类型的参数。
下面我们还在上面例子的基础上,使用offloat函数来举个例子:

ValueAnimator animator = ValueAnimator.offloat(0f,400f,50f,300f);animator.setDuration(3000); animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {    @OverrIDe    public voID onAnimationUpdate(ValueAnimator animation) {        float curValuefloat = (float)animation.getAnimatedValue();        int curValue = curValuefloat.intValue();        tv.layout(curValue,curValue+tv.getHeight());    }});animator.start();

先看看效果:

在效果图中,我们可以看到,在点击按钮之后,textvIEw先向右下运动然后再回来,然后再向右下运动过去
在这个例子中,我们使用ValueAnimator.offloat(0f,300f)构造了一个比较复杂的动画渐变,值是0变到400再回到50最后变成300;
所以我们在监听时,首先得到当前动画的值:

float curValuefloat = (float)animation.getAnimatedValue();

通过getAnimatedValue()来获取当前运动点的值,大家可能会疑问为什么要转成float类型,我们先来看看getAnimatedValue()的声明:

Object getAnimatedValue();

它返回的类型是一个Object原始类型,那我们怎么知道我们要将它强转成什么类型呢。注意,我们在设定动画初始值时用的是offloat()函数,所以每个值的类型必定是float类型,所以我们获取出来的类型也必然是float类型的。同样,如果我们使用ofInt设定的初始值,那么通过getAnimatedValue()获取到的值就应该强转为Int类型。
在得到当前运动的值以后,通过layout函数将textvIEw移动到指定位置即可。
 

2、常用函数

先做个汇总,这部分将讲述的方法有:

/** * 设置动画时长,单位是毫秒 */ValueAnimator setDuration(long duration)/** * 获取ValueAnimator在运动时,当前运动点的值 */Object getAnimatedValue();/** * 开始动画 */voID start()/** * 设置循环次数,设置为INFINITE表示无限循环 */voID setRepeatCount(int value)/** * 设置循环模式 * value取值有RESTART,REVERSE, */voID setRepeatMode(int value)/** * 取消动画 */voID cancel()

1、setDuration()、getAnimatedValue()、start()

这三个函数在上面的实例中已经使用过,setDuration(long duration)是设置一次动画的时长,单位是毫秒,start()是开始动画,唯一有点难度的是Object getAnimatedValue(),它的声明为:

Object getAnimatedValue();

它的意义就是获取动画在当前运动点的值,所以这个对象只能用于在动画运动中。返回的值是Object,上面我们说过,通过getAnimatedValue()得到的值的实际类型与初始设置的值相同,如果我们利用ofInt()设置的动画,那通过getAnimatedValue()得到的值为类型就是Int类型。如果我们利用offloat()设置的动画,通过getAnimatedValue()得到的值类型就是float类型。
总而言之,通过getAnimatedValue()值类型与初始设置动画时的值类型相同
上面我们已经用过这些函数了,这里就不再举例了。

 

2、setRepeatCount()、setRepeatMode()、cancel()

setRepeatCount(int value)用于设置动画循环次数,设置为0表示不循环,设置为ValueAnimation.INFINITE表示无限循环。
cancel()用于取消动画
我们着重说一下setRepeatMode:

/** * 设置循环模式 * value取值有RESTART,REVERSE */voID setRepeatMode(int value)

setRepeatMode(int value)用于设置循环模式,取值为ValueAnimation.RESTART时,表示正序重新开始,当取值为ValueAnimation.REVERSE表示倒序重新开始。
下面我们使用这三个函数来举个例子,先看下动画效果:

在这里,有两个按钮,当点击start anim时,textvIEw垂直向下运动,我定义的运动初始值为ofInt(0,400);所以从效果图中也可以看出我们定义它为无限循环,而且每次循环时都是使用ValueAnimation.REVERSE让其倒序重新开始循环。当我们点击cancel anim时,取消动画。
下面我们来看看代码
首先是布局代码,布局代码时,采用relativeLayout布局,将两个按钮放两边,textvIEw放中间,代码如下:

<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"              androID:orIEntation="vertical"              androID:layout_wIDth="fill_parent"              androID:layout_height="fill_parent">     <button        androID:ID="@+ID/btn"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParentleft="true"        androID:padding="10dp"        androID:text="start anim"        />     <button            androID:ID="@+ID/btn_cancel"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:layout_alignParentRight="true"            androID:padding="10dp"            androID:text="cancel anim"            />    <TextVIEw            androID:ID="@+ID/tv"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:layout_centerHorizontal="true"            androID:padding="10dp"            androID:background="#ffff00"            androID:text="Hello qijian"/></relativeLayout>

这个布局代码没什么难度就不讲了。
下面来看看两个按钮的 *** 作代码:

    private button btnStart,btnCancel;    private ValueAnimator repeatanimator;     @OverrIDe    public voID onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentVIEw(R.layout.main);        tv = (TextVIEw) findVIEwByID(R.ID.tv);         btnStart = (button) findVIEwByID(R.ID.btn);        btnCancel = (button)findVIEwByID(R.ID.btn_cancel);         btnStart.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                repeatanimator = doRepeatanim();            }        });         btnCancel.setonClickListener(new VIEw.OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                 repeatanimator.cancel();            }        });    } 

这段代码也没什么难度,当我们点击btnStart的时候,执行doRepeatanim()函数,这个函数返回它构造的ValueAnimator对象,将其赋值给repeatanimator变量。当点击btnCancel时,调用 repeatanimator.cancel()取消当前动画。
下面我们来看看doRepeatanim()函数都做了哪些工作:

private ValueAnimator doRepeatanim(){   ValueAnimator animator = ValueAnimator.ofInt(0,400);   animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {       @OverrIDe       public voID onAnimationUpdate(ValueAnimator animation) {           int curValue = (int)animation.getAnimatedValue();           tv.layout(tv.getleft(),tv.getRight(),curValue+tv.getHeight());       }   });   animator.setRepeatMode(ValueAnimator.REVERSE);   animator.setRepeatCount(ValueAnimator.INFINITE);   animator.setDuration(1000);   animator.start();   return animator;}

在这里我们构造了一个ValueAnimator,动画范围是0-400,设置重复次数为无限循环。循环模式为倒序。在animator.setDuration(1000)表示动画一次的时长为1000毫秒。最后,由于我们在取消动画时还需要我们构造的这个ValueAnimator实例,所以将animator返回。

 

3、两个监听器

(1)、添加监听器

前面,我们讲过一个添加监听器animator.addUpdateListener,以监听动画过程中值的实时变化,其实在ValueAnimator中共有两个监听器:

/** * 监听器一:监听动画变化时的实时值 */public static interface AnimatorUpdateListener {    voID onAnimationUpdate(ValueAnimator animation);}//添加方法为:public voID addUpdateListener(AnimatorUpdateListener Listener)/** * 监听器二:监听动画变化时四个状态 */public static interface AnimatorListener {    voID onAnimationStart(Animator animation);    voID onAnimationEnd(Animator animation);    voID onAnimationCancel(Animator animation);    voID onAnimationRepeat(Animator animation);}//添加方法为:public voID addListener(AnimatorListener Listener) 

关于监听器一:AnimatorUpdateListener就是监听动画的实时变化状态,在onAnimationUpdate(ValueAnimator animation)中的animation表示当前状态动画的实例。这里就不再细讲这个监听器了,这里我们主要讲讲监听器AnimatorListener;
在AnimatorListener中,主要是监听Animation的四个状态,start、end、cancel、repeat;当动画开始时,会调用onAnimationStart(Animator animation)方法,当动画结束时调用onAnimationEnd(Animator animation),当动画取消时,调用onAnimationCancel(Animator animation)函数,当动画重复时,会调用onAnimationRepeat(Animator animation)函数。
添加AnimatorListener的方法是addListener(AnimatorListener Listener) ;
下面我们就举个例子来看一下AnimatorListener的使用方法。
我们在上面doRepeatanim()函数的基础上,添加上AnimatorListener,代码如下:
代码如下:

private ValueAnimator doAnimatorListener(){    ValueAnimator animator = ValueAnimator.ofInt(0,400);     animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {        @OverrIDe        public voID onAnimationUpdate(ValueAnimator animation) {            int curValue = (int)animation.getAnimatedValue();            tv.layout(tv.getleft(),curValue+tv.getHeight());        }    });    animator.addListener(new Animator.AnimatorListener() {        @OverrIDe        public voID onAnimationStart(Animator animation) {            Log.d("qijian","animation start");        }         @OverrIDe        public voID onAnimationEnd(Animator animation) {            Log.d("qijian","animation end");        }         @OverrIDe        public voID onAnimationCancel(Animator animation) {            Log.d("qijian","animation cancel");        }         @OverrIDe        public voID onAnimationRepeat(Animator animation) {            Log.d("qijian","animation repeat");        }    });    animator.setRepeatMode(ValueAnimator.REVERSE);    animator.setRepeatCount(ValueAnimator.INFINITE);    animator.setDuration(1000);    animator.start();    return animator;}

在上面的代码中,我们是在doRepeatanim()函数的基础上,又添加了AnimatorListener()以监听它的状态,并把这些状态打印出来。
我们来看看动画效果:

打印出来结果如下:

(2)、取消监听

上面我们讲了如何添加监听函数,下面我们来看看如何移除监听器:

/** * 移除AnimatorUpdateListener */voID removeUpdateListener(AnimatorUpdateListener Listener);voID removeAllUpdateListeners(); /**  * 移除AnimatorListener  */voID removeListener(AnimatorListener Listener);voID removeAllListeners();

针对AnimatorUpdateListener和AnimatorListener,每个监听器都有两个方法来移除;我们就以移除AnimatorListener来简单讲一下,removeListener(AnimatorListener Listener)用于在animator中移除指定的监听器,而removeAllListeners()用于移除animator中所有的AnimatorListener监听器;
下面上在添加监听器的例子基础上,不改变doAnimatorListener()的代码,仍然是textvIEw做动画时添加AnimatorListener的状态监听。然后点击cancelAnim时,移除AnimatorListener,代码如下:
AnimatorListener的代码:

public voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentVIEw(R.layout.main);     …………    btnStart.setonClickListener(new VIEw.OnClickListener() {        @OverrIDe        public voID onClick(VIEw v) {            repeatanimator = doAnimatorListener();        }    });     btnCancel.setonClickListener(new VIEw.OnClickListener() {        @OverrIDe        public voID onClick(VIEw v) {            repeatanimator.removeAllListeners();        }    });}

doAnimatorListener的代码与上面的一样,就不再重复贴了,当点击btnCancel时移除animator中所有的AnimatorListener,但注意的是,我们在移除AnimatorListener后,并没有cancel动画效果,所以动画会一直不停的运动下去。但移除AnimatorListener之后,Log应该就不会再打印了。
效果如下:

在效果图中,在动画循环了三次之后,我们点击btnCancel移除所有的AnimatorListener;打印tag如下:

可见只打印了循环三次以前的log,在移除我们添加的AnimatorListener之后,我们打印log的代码就不会再执行了,所以也就不会再有log了。
好了,有关监听器的部分,我们就到这里了

 

4、其它函数

上面我们讲了ValueAnimator中常用的一些函数,但是还有一些函数虽然不常用,但我们还是简单讲一下,他们分别是:

/** * 延时多久时间开始,单位是毫秒 */public voID setStartDelay(long startDelay)/** * 完全克隆一个ValueAnimator实例,包括它所有的设置以及所有对监听器代码的处理 */public ValueAnimator clone()

setStartDelay(long startDelay)非常容易理解,就是设置多久后动画才开始。
但clone()这个函数就有点难度了;首先是什么叫克隆。就是完全一样!注意是完全一样!就是复制出来一个完全一样的新的ValueAnimator实例出来。对原来的那个ValueAnimator是怎么处理的,在这个新的实例中也是全部一样的。
我们来看一个例子来看一下,什么叫全部一样:
首先,我们定义一个函数doRepeatanim():

private ValueAnimator doRepeatanim(){    ValueAnimator animator = ValueAnimator.ofInt(0,curValue+tv.getHeight());        }    });    animator.setDuration(1000);    animator.setRepeatMode(ValueAnimator.REVERSE);    animator.setRepeatCount(ValueAnimator.INFINITE);    return animator;}

这个函数其实与上面在讲循环函数时的doRepeatanim()函数是一样的;在这个函数中,我们定义一个ValueAnimator,设置为无限循环,然后添加AnimatorUpdateListener监听;在动画在运动时,向下移动textvIEw.这里要非常注意的一点是我们只是定义了一个ValueAnimator对象,并没有调用start()让动画开始!!!!
然后我们再看看点击btnStart和btnCancel时的代码处理:

public voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentVIEw(R.layout.main);     …………    btnStart.setonClickListener(new VIEw.OnClickListener() {        @OverrIDe        public voID onClick(VIEw v) {            repeatanimator = doRepeatanim();            //克隆一个新的ValueAnimator,然后开始动画            ValueAnimator newAnimator = repeatanimator.clone();            newAnimator.setStartDelay(1000);            newAnimator.start();        }    });     btnCancel.setonClickListener(new VIEw.OnClickListener() {        @OverrIDe        public voID onClick(VIEw v) {            repeatanimator.removeAllUpdateListeners();             repeatanimator.cancel();        }    });}

在上面的代码中,我们在点击btnStart时:

repeatanimator = doRepeatanim();//克隆一个新的ValueAnimator,然后开始动画ValueAnimator newAnimator = repeatanimator.clone();newAnimator.setStartDelay(1000);newAnimator.start();

我们利用clone()克隆了一个doRepeatanim()生成的对象。然后调用setStartDelay(1000);将动画开始时间设为1000毫秒后开始动画。最后调用start()函数开始动画。
这里有一点非常注意是:我们除了对newAnimator设置了动画开始延时1000毫秒以后,没有对它进行任何设置,更没有在在它的监听器中对textvIEw的处理!!!!那textvIEw会动吗?答案是会动的,我们讲了,克隆就是完全一样,在原来的ValueAnimator中是如何处理的,克隆过来的ValueAnimator也是完全一样的处理方式!
在点击btnCancel时:

repeatanimator.removeAllUpdateListeners();repeatanimator.cancel();

我们既移除了repeatanimator的监听器又取消了动画。但有用吗?必须当然是没用的,因为我们start的动画对象是从repeatanimator克隆来的newAnimator。这好比是克隆羊,原来的羊和克隆羊什么都是一样的,但你把原来的羊杀了,克隆的羊会死吗?用大脚指头想都知道不会!所以如果要取消当前的动画必须通过newAnimator.cancel()来取消
效果图如下:

从效果图中也可以看出,点击btnCancel按钮是没有做用的,并没能取消动画。 

总结

以上是内存溢出为你收集整理的自定义控件三部曲之动画篇(四)——ValueAnimator基本使用全部内容,希望文章能够帮你解决自定义控件三部曲之动画篇(四)——ValueAnimator基本使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1089535.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存