Android动画分类和详解

Android包含三种动画:View Animation、 Drawable Animation、Property Animation(Android3.0新引入)。

View Animation 

简介:

基于View的渐变动画,她只改变了View的绘制效果,而实际属性值未变。比如动画移动一个按钮位置,但按钮点击的实际位置仍未改变。在代码中定义动画,可以参考AnimationSet类和Animation的子类;而如果使用XML,可以在res/anim/文件夹中定义XML文件。

View animation系统可以用来执行View上的Tween animationFrame animation
    Tween animation可以在View对象上执行一系列的简单变换,比如位置、尺寸、旋转、透明度等。
    animation package 包中包含了tween animation所有的类。
    一系列的动画命令定义了一个完整的tween animation,可以用代码定义也可以用XML资源文件定义。

用法详解:

XML资源文件的使用可以见:Animation Resources。
    XML文件放在项目的res/anim/目录下。文件必须有一个唯一的根节点。
    这个根节点可以是:<alpha>, <scale>, <translate>, <rotate>, interpolator element, 或者是<set>。
    默认情况下,所有的动画都是并行进行的,要想使得它们顺寻发生,你必须指定startOffset属性。
    有一些值,可以指定是相对于View本身还是相对于父类容器的。
    比如pivotX,要表示相对于自身的50%,要用50%;要表示相对于父类容器的50%,则直接写50。

XML文件存储为:res/anim/hyperspace_jump.xml:

<span style="color:#333333;"><set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">
    <scale
        android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:fromXScale="1.0"
        android:toXScale="1.4"
        android:fromYScale="1.0"
        android:toYScale="0.6"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fillAfter="false"
        android:duration="700" />
    <set
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="700">
        <scale
            android:fromXScale="1.4"
            android:toXScale="0.0"
            android:fromYScale="0.6"
            android:toYScale="0.0"
            android:pivotX="50%"
            android:pivotY="50%"
            android:duration="400" />
        <rotate
            android:fromDegrees="0"
            android:toDegrees="-45"
            android:toYScale="0.0"
            android:pivotX="50%"
            android:pivotY="50%"
            android:duration="400" />
    </set>
</set></span>

在代码中把这个动画应用于一个ImageView:

ImageView image = (ImageView) findViewById(R.id.image);
Animation hyperspaceJump = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
image.startAnimation(hyperspaceJump);
除了调用 startAnimation() ,另一种处理方式是通过Animation.setStartTime()方法定义一个开始时间,然后通过View.setAnimation()方法把这个动画赋给控件即可。

Drawable Animation

简介:

加载一系列Drawable资源来创建动画,这种传统动画某种程度上就是创建不同图片序列,顺序播放,就像电影胶片。在代码中定义动画帧,使用AnimationDrawable类;XML文件能更简单的组成动画帧,在res/drawable文件夹,使用<animation-list>采用<item>来定义不同的帧。感觉只能设置的属性是动画间隔时间。

用法详解:

在Andrio的中,可以使用多幅图片实现动画效果。

首先定义一个以 <animation-list>为根节点的xml文件,命名为 anim.xml 放在 res/drawable/目录下。

[html]  view plain  copy
  1. <animation-list xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:oneshot="true">  
  3.     <item android:drawable="@drawable/image1" android:duration="200" />  
  4.     <item android:drawable="@drawable/image2" android:duration="200" />  
  5.     <item android:drawable="@drawable/image3" android:duration="200" />  
  6. </animation-list>  


然后,在控件中使用此资源文件 

[java]  view plain  copy
  1. ImageView image = (ImageView) findViewById(R.id.rocket_image);  
  2. image.setBackgroundResource(R.drawable.rocket_thrust);  
  3. AnimationDrawable animation = (AnimationDrawable) image.getBackground();   

最后,在需要的时候启动动画即可。

[html]  view plain  copy
  1. animation.start(); 

Property Animation

简介:

动画的对象除了传统的View对象,还可以是Object对象,动画之后,Object对象的属性值被实实在在的改变了。Property animation能够通过改变View对象的实际属性来实现View动画。任何时候View属性的改变,View能自动调用invalidate()来试试刷新。

View实施Property animation时的新属性:

  • translationX 、translationY: 左上坐标的改变值
  • rotation、 rotationX、 rotationY
  • scaleX 、 scaleY: 横纵向的缩放比例,如:1.2f、0.8f
  • pivotX 、 pivotY: 缩放和旋转时横纵向中心点,默认情况下是View的中心,如果想以View的左上坐标为中心进行旋转或者缩放,应该将其值都设置为0
  • x 、 y:
  • alpha:透明度. 默认为1,0代表全透明,即不可见

用法详解:

1、相关API

Property Animation故名思议就是通过动画的方式改变对象的属性了,我们首先需要了解几个属性:

Duration动画的持续时间,默认300ms。

Time interpolation:时间差值,定义动画的变化率。

Repeat count and behavior:重复次数、以及重复模式;可以定义重复多少次;重复时从头开始,还是反向。

Animator sets: 动画集合,你可以定义一组动画,一起执行或者顺序执行。

Frame refresh delay:帧刷新延迟,对于你的动画,多久刷新一次帧;默认为10ms,但最终依赖系统的当前状态;基本不用管。

相关的类

ObjectAnimator  动画的执行类,后面详细介绍

ValueAnimator 动画的执行类,后面详细介绍 

AnimatorSet 用于控制一组动画的执行:线性,一起,每个动画的先后执行等。

AnimatorInflater 用户加载属性动画的xml文件

TypeEvaluator  类型估值,主要用于设置动画操作属性的值。

TimeInterpolator 时间插值,上面已经介绍。

总的来说,属性动画就是,动画的执行类来设置动画操作的对象的属性、持续时间,开始和结束的属性值,时间差值等,然后系统会根据设置的参数动态的变化对象的属性。

2.ObjectAnimator实现动画

一行代码,秒秒钟实现动画,
布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:id="@+id/id_container" >  
  
    <ImageView  
        android:id="@+id/id_ball"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_centerInParent="true"  
        android:src="@drawable/mv"   
        android:scaleType="centerCrop"  
        android:onClick="rotateyAnimRun"  
        />  
  
</RelativeLayout>  

很简单,就一张妹子图片~
Activity代码:

[java]  view plain  copy
  1. package com.example.zhy_property_animation;    
  2. import android.animation.ObjectAnimator;  
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6.   
  7. public class ObjectAnimActivity extends Activity  
  8. {  
  9.     @Override  
  10.     protected void onCreate(Bundle savedInstanceState)  
  11.     {  
  12.         super.onCreate(savedInstanceState);  
  13.         setContentView(R.layout.xml_for_anim);  
  14.     }  
  15.   
  16.     public void rotateyAnimRun(View view)  
  17.     {  
  18.          ObjectAnimator//  
  19.          .ofFloat(view, "rotationX"0.0F, 360.0F)//  
  20.          .setDuration(500)//  
  21.          .start();  
  22.     }  
  23.   
  24. }  

效果:

Android动画分类和详解_第1张图片

是不是一行代码就能实现简单的动画~~

对于ObjectAnimator

1、提供了ofInt、ofFloat、ofObject,这几个方法都是设置动画作用的元素、作用的属性、动画开始、结束、以及中间的任意个属性值。

当对于属性值,只设置一个的时候,会认为当然对象该属性的值为开始(getPropName反射获取),然后设置的值为终点。如果设置两个,则一个为开始、一个为结束~~~

动画更新的过程中,会不断调用setPropName更新元素的属性,所有使用ObjectAnimator更新某个属性,必须得有getter(设置一个属性值的时候)和setter方法~

2、如果你操作对象的该属性方法里面,比如上例的setRotationX如果内部没有调用view的重绘,则你需要自己按照下面方式手动调用。

[java]  view plain  copy
  1. anim.addUpdateListener(new AnimatorUpdateListener()  
  2.         {  
  3.             @Override  
  4.             public void onAnimationUpdate(ValueAnimator animation)  
  5.             {  
  6. //              view.postInvalidate();  
  7. //              view.invalidate();  
  8.             }  
  9.         });  
3、看了上面的例子,因为设置的操作的属性只有一个,那么如果我希望一个动画能够让View既可以缩小、又能够淡出(3个属性scaleX,scaleY,alpha),只使用ObjectAnimator咋弄?

想法是不是很不错,可能会说使用AnimatorSet啊,这一看就是一堆动画塞一起执行,但是我偏偏要用一个ObjectAnimator实例实现呢~下面看代码:

[java]  view plain  copy
  1. public void rotateyAnimRun(final View view)  
  2. {  
  3.     ObjectAnimator anim = ObjectAnimator//  
  4.             .ofFloat(view, "zhy"1.0F,  0.0F)//  
  5.             .setDuration(500);//  
  6.     anim.start();  
  7.     anim.addUpdateListener(new AnimatorUpdateListener()  
  8.     {  
  9.         @Override  
  10.         public void onAnimationUpdate(ValueAnimator animation)  
  11.         {  
  12.             float cVal = (Float) animation.getAnimatedValue();  
  13.             view.setAlpha(cVal);  
  14.             view.setScaleX(cVal);  
  15.             view.setScaleY(cVal);  
  16.         }  
  17.     });  
  18. }  

把设置属性的那个字符串,随便写一个该对象没有的属性,就是不管~~咱们只需要它按照时间插值和持续时间计算的那个值,我们自己手动调用~

效果:

Android动画分类和详解_第2张图片

这个例子就是想说明一下,有时候换个思路不要被API所约束,利用部分API提供的功能也能实现好玩的效果~~~

比如:你想实现抛物线的效果,水平方向100px/s,垂直方向加速度200px/s*s ,咋实现呢~~可以自己用ObjectAnimator试试~

4、其实还有更简单的方式,实现一个动画更改多个效果:使用propertyValuesHolder

[java]  view plain  copy
  1. public void propertyValuesHolder(View view)  
  2.     {  
  3.         PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat("alpha", 1f,  
  4.                 0f, 1f);  
  5.         PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat("scaleX", 1f,  
  6.                 0, 1f);  
  7.         PropertyValuesHolder pvhZ = PropertyValuesHolder.ofFloat("scaleY", 1f,  
  8.                 0, 1f);  
  9.         ObjectAnimator.ofPropertyValuesHolder(view, pvhX, pvhY,pvhZ).setDuration(1000).start();  
  10.     }  
3.ValueAnimator实现动画

和ObjectAnimator用法很类似,简单看一下用view垂直移动的动画代码:

[java]  view plain  copy
  1. public void verticalRun(View view)  
  2.     {  
  3.         ValueAnimator animator = ValueAnimator.ofFloat(0, mScreenHeight  
  4.                 - mBlueBall.getHeight());  
  5.         animator.setTarget(mBlueBall);  
  6.         animator.setDuration(1000).start();  
  7.     }  

给你的感觉是不是,坑爹啊,这和ValueAnimator有毛线区别~但是仔细看,你看会发现,没有设置操作的属性~~也就是说,上述代码是没有任何效果的,没有指定属性~

这就是和ValueAnimator的区别之处:ValueAnimator并没有在属性上做操作,你可能会问这样有啥好处?我岂不是还得手动设置?

好处:不需要操作的对象的属性一定要有getter和setter方法,你可以自己根据当前动画的计算值,来操作任何属性,记得上例的那个【我希望一个动画能够让View既可以缩小、又能够淡出(3个属性scaleX,scaleY,alpha)】吗?其实就是这么个用法~

实例:

布局文件:

[html]  view plain  copy
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"   
  5.     android:id="@+id/id_container"  
  6.     
  7.     >  
  8.   
  9.     <ImageView  
  10.         android:id="@+id/id_ball"  
  11.         android:layout_width="wrap_content"  
  12.         android:layout_height="wrap_content"  
  13.         android:src="@drawable/bol_blue" />  
  14.   
  15.     <LinearLayout  
  16.         android:layout_width="fill_parent"  
  17.         android:layout_height="wrap_content"  
  18.         android:layout_alignParentBottom="true"  
  19.         android:orientation="horizontal" >  
  20.   
  21.         <Button  
  22.             android:layout_width="wrap_content"  
  23.             android:layout_height="wrap_content"  
  24.             android:onClick="verticalRun"  
  25.             android:text="垂直" />  
  26.   
  27.         <Button  
  28.             android:layout_width="wrap_content"  
  29.             android:layout_height="wrap_content"  
  30.             android:onClick="paowuxian"  
  31.             android:text="抛物线" />  
  32.   
  33.     </LinearLayout>  
  34.   
  35. </RelativeLayout>  
左上角一个小球,底部两个按钮~我们先看一个自由落体的代码:

[java]  view plain  copy
  1. /** 
  2.      * 自由落体 
  3.      * @param view 
  4.      */  
  5.     public void verticalRun( View view)  
  6.     {  
  7.         ValueAnimator animator = ValueAnimator.ofFloat(0, mScreenHeight  
  8.                 - mBlueBall.getHeight());  
  9.         animator.setTarget(mBlueBall);  
  10.         animator.setDuration(1000).start();  
  11. //      animator.setInterpolator(value)  
  12.         animator.addUpdateListener(new AnimatorUpdateListener()  
  13.         {  
  14.             @Override  
  15.             public void onAnimationUpdate(ValueAnimator animation)  
  16.             {  
  17.                 mBlueBall.setTranslationY((Float) animation.getAnimatedValue());  
  18.             }  
  19.         });  
  20.     }  

与ObjectAnimator不同的就是我们自己设置元素属性的更新~虽然多了几行代码,但是貌似提高灵活性~

下面再来一个例子,如果我希望小球抛物线运动【实现抛物线的效果,水平方向100px/s,垂直方向加速度200px/s*s 】,分析一下,貌似只和时间有关系,但是根据时间的变化,横向和纵向的移动速率是不同的,我们该咋实现呢?此时就要重写TypeValue的时候了,因为我们在时间变化的同时,需要返回给对象两个值,x当前位置,y当前位置:

代码:

[java]  view plain  copy
  1. /** 
  2.      * 抛物线 
  3.      * @param view 
  4.      */  
  5.     public void paowuxian(View view)  
  6.     {  
  7.   
  8.         ValueAnimator valueAnimator = new ValueAnimator();  
  9.         valueAnimator.setDuration(3000);  
  10.         valueAnimator.setObjectValues(new PointF(00));  
  11.         valueAnimator.setInterpolator(new LinearInterpolator());  
  12.         valueAnimator.setEvaluator(new TypeEvaluator<PointF>()  
  13.         {  
  14.             // fraction = t / duration  
  15.             @Override  
  16.             public PointF evaluate(float fraction, PointF startValue,  
  17.                     PointF endValue)  
  18.             {  
  19.                 Log.e(TAG, fraction * 3 + "");  
  20.                 // x方向200px/s ,则y方向0.5 * 10 * t  
  21.                 PointF point = new PointF();  
  22.                 point.x = 200 * fraction * 3;  
  23.                 point.y = 0.5f * 200 * (fraction * 3) * (fraction * 3);  
  24.                 return point;  
  25.             }  
  26.         });  
  27.   
  28.         valueAnimator.start();  
  29.         valueAnimator.addUpdateListener(new AnimatorUpdateListener()  
  30.         {  
  31.             @Override  
  32.             public void onAnimationUpdate(ValueAnimator animation)  
  33.             {  
  34.                 PointF point = (PointF) animation.getAnimatedValue();  
  35.                 mBlueBall.setX(point.x);  
  36.                 mBlueBall.setY(point.y);  
  37.   
  38.             }  
  39.         });  
  40.     }  
可以看到,因为ofInt,ofFloat等无法使用,我们自定义了一个TypeValue,每次根据当前时间返回一个PointF对象,(PointF和Point的区别就是x,y的单位一个是float,一个是int;RectF,Rect也是)PointF中包含了x,y的当前位置~然后我们在监听器中获取,动态设置属性:

效果图:

Android动画分类和详解_第3张图片

有木有两个铁球同时落地的感觉~~对,我应该搞两个球~~ps:物理公式要是错了,就当没看见哈

自定义TypeEvaluator传入的泛型可以根据自己的需求,自己设计个Bean。

好了,我们已经分别讲解了ValueAnimator和ObjectAnimator实现动画;二者区别;如何利用部分API,自己更新属性实现效果;自定义TypeEvaluator实现我们的需求;但是我们并没有讲如何设计插值,其实我觉得把,这个插值默认的那一串实现类够用了~~很少,会自己去设计个超级变态的~嗯~所以:略

4、监听动画的事件

对于动画,一般都是一些辅助效果,比如我要删除个元素,我可能希望是个淡出的效果,但是最终还是要删掉,并不是你透明度没有了,还占着位置,所以我们需要知道动画如何结束。

所以我们可以添加一个动画的监听:

[java]  view plain  copy
  1. public void fadeOut(View view)  
  2.     {  
  3.         ObjectAnimator anim = ObjectAnimator.ofFloat(mBlueBall, "alpha"0.5f);  
  4.           
  5.         anim.addListener(new AnimatorListener()  
  6.         {  
  7.   
  8.             @Override  
  9.             public void onAnimationStart(Animator animation)  
  10.             {  
  11.                 Log.e(TAG, "onAnimationStart");  
  12.             }  
  13.   
  14.             @Override  
  15.             public void onAnimationRepeat(Animator animation)  
  16.             {  
  17.                 // TODO Auto-generated method stub  
  18.                 Log.e(TAG, "onAnimationRepeat");  
  19.             }  
  20.   
  21.             @Override  
  22.             public void onAnimationEnd(Animator animation)  
  23.             {  
  24.                 Log.e(TAG, "onAnimationEnd");  
  25.                 ViewGroup parent = (ViewGroup) mBlueBall.getParent();  
  26.                 if (parent != null)  
  27.                     parent.removeView(mBlueBall);  
  28.             }  
  29.   
  30.             @Override  
  31.             public void onAnimationCancel(Animator animation)  
  32.             {  
  33.                 // TODO Auto-generated method stub  
  34.                 Log.e(TAG, "onAnimationCancel");  
  35.             }  
  36.         });  
  37.         anim.start();  
  38.     }  

这样就可以监听动画的开始、结束、被取消、重复等事件~但是有时候会觉得,我只要知道结束就行了,这么长的代码我不能接收,那你可以使用AnimatorListenerAdapter

[java]  view plain  copy
  1. anim.addListener(new AnimatorListenerAdapter()  
  2. {  
  3.     @Override  
  4.     public void onAnimationEnd(Animator animation)  
  5.     {  
  6.         Log.e(TAG, "onAnimationEnd");  
  7.         ViewGroup parent = (ViewGroup) mBlueBall.getParent();  
  8.         if (parent != null)  
  9.             parent.removeView(mBlueBall);  
  10.     }  
  11. });  

AnimatorListenerAdapter继承了AnimatorListener接口,然后空实现了所有的方法~

效果图:

Android动画分类和详解_第4张图片

animator还有cancel()和end()方法:cancel动画立即停止,停在当前的位置;end动画直接到最终状态。

5、AnimatorSet的使用

实例:

布局文件:

[html]  view plain  copy
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"   
  5.     android:id="@+id/id_container"  
  6.      
  7.     >  
  8.   
  9.     <ImageView  
  10.         android:id="@+id/id_ball"  
  11.         android:layout_width="wrap_content"  
  12.         android:layout_height="wrap_content"  
  13.         android:layout_centerInParent="true"  
  14.         android:src="@drawable/bol_blue" />  
  15.   
  16.     <LinearLayout  
  17.         android:layout_width="fill_parent"  
  18.         android:layout_height="wrap_content"  
  19.         android:layout_alignParentBottom="true"  
  20.         android:orientation="horizontal" >  
  21.   
  22.         <Button  
  23.             android:layout_width="wrap_content"  
  24.             android:layout_height="wrap_content"  
  25.             android:onClick="togetherRun"  
  26.             android:text="简单的多动画Together" />  
  27.   
  28.         <Button  
  29.             android:layout_width="wrap_content"  
  30.             android:layout_height="wrap_content"  
  31.             android:onClick="playWithAfter"  
  32.             android:text="多动画按次序执行" />  
  33.           
  34.   
  35.     </LinearLayout>  
  36.   
  37. </RelativeLayout>  

继续玩球~

代码:

[java]  view plain  copy
  1. package com.example.zhy_property_animation;  
  2.   
  3. import android.animation.AnimatorSet;  
  4. import android.animation.ObjectAnimator;  
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.view.View;  
  8. import android.view.animation.LinearInterpolator;  
  9. import android.widget.ImageView;  
  10.   
  11. public class AnimatorSetActivity extends Activity  
  12. {  
  13.     private ImageView mBlueBall;  
  14.   
  15.     @Override  
  16.     protected void onCreate(Bundle savedInstanceState)  
  17.     {  
  18.         super.onCreate(savedInstanceState);  
  19.         setContentView(R.layout.anim_set);  
  20.   
  21.         mBlueBall = (ImageView) findViewById(R.id.id_ball);  
  22.   
  23.     }  
  24.   
  25.     public void togetherRun(View view)  
  26.     {  
  27.         ObjectAnimator anim1 = ObjectAnimator.ofFloat(mBlueBall, "scaleX",  
  28.                 1.0f, 2f);  
  29.         ObjectAnimator anim2 = ObjectAnimator.ofFloat(mBlueBall, "scaleY",  
  30.                 1.0f, 2f);  
  31.         AnimatorSet animSet = new AnimatorSet();  
  32.         animSet.setDuration(2000);  
  33.         animSet.setInterpolator(new LinearInterpolator());  
  34.         //两个动画同时执行  
  35.         animSet.playTogether(anim1, anim2);  
  36.         animSet.start();  
  37.     }  
  38.   
  39.     public void playWithAfter(View view)  
  40.     {  
  41.         float cx = mBlueBall.getX();  
  42.   
  43.         ObjectAnimator anim1 = ObjectAnimator.ofFloat(mBlueBall, "scaleX",  
  44.                 1.0f, 2f);  
  45.         ObjectAnimator anim2 = ObjectAnimator.ofFloat(mBlueBall, "scaleY",  
  46.                 1.0f, 2f);  
  47.         ObjectAnimator anim3 = ObjectAnimator.ofFloat(mBlueBall,  
  48.                 "x",  cx ,  0f);  
  49.         ObjectAnimator anim4 = ObjectAnimator.ofFloat(mBlueBall,  
  50.                 "x", cx);  
  51.           
  52.         /** 
  53.          * anim1,anim2,anim3同时执行 
  54.          * anim4接着执行 
  55.          */  
  56.         AnimatorSet animSet = new AnimatorSet();  
  57.         animSet.play(anim1).with(anim2);  
  58.         animSet.play(anim2).with(anim3);  
  59.         animSet.play(anim4).after(anim3);  
  60.         animSet.setDuration(1000);  
  61.         animSet.start();  
  62.     }  
  63. }  

写了两个效果:

第一:使用playTogether两个动画同时执行,当然还有playSequentially依次执行~~

第二:如果我们有一堆动画,如何使用代码控制顺序,比如1,2同时;3在2后面;4在1之前等~就是效果2了

有一点注意:animSet.play().with();也是支持链式编程的,但是不要想着狂点,比如 animSet.play(anim1).with(anim2).before(anim3).before(anim5); 这样是不行的,系统不会根据你写的这一长串来决定先后的顺序,所以麻烦你按照上面例子的写法,多写几行:

效果图:

Android动画分类和详解_第5张图片

6、如何使用xml文件来创建属性动画

大家肯定都清楚,View Animator 、Drawable Animator都可以在anim文件夹下创建动画,然后在程序中使用,甚至在Theme中设置为属性值。当然了,属性动画其实也可以在文件中声明:

首先在res下建立animator文件夹,然后建立res/animator/scalex.xml

[html]  view plain  copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:duration="1000"  
  4.     android:propertyName="scaleX"  
  5.     android:valueFrom="1.0"  
  6.     android:valueTo="2.0"  
  7.     android:valueType="floatType" >  
  8. </objectAnimator>  
代码:

[java]  view plain  copy
  1. public void scaleX(View view)  
  2.     {  
  3.         // 加载动画  
  4.         Animator anim = AnimatorInflater.loadAnimator(this, R.animator.scalex);  
  5.         anim.setTarget(mMv);  
  6.         anim.start();  
  7.     }  
使用AnimatorInflater加载动画的资源文件,然后设置目标,就ok~~是不是很简单,这只是单纯横向的放大一倍~

如果我希望纵向与横向同时缩放呢?则可以怎么定义属性文件:

[html]  view plain  copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:ordering="together" >  
  4.   
  5.     <objectAnimator  
  6.         android:duration="1000"  
  7.         android:propertyName="scaleX"  
  8.         android:valueFrom="1"  
  9.         android:valueTo="0.5" >  
  10.     </objectAnimator>  
  11.     <objectAnimator  
  12.         android:duration="1000"  
  13.         android:propertyName="scaleY"  
  14.         android:valueFrom="1"  
  15.         android:valueTo="0.5" >  
  16.     </objectAnimator>  
  17.   
  18. </set>  

使用set标签,有一个orderring属性设置为together,【还有另一个值:sequentially(表示一个接一个执行)】。

上篇博客中忽略了一个效果,就是缩放、反转等都有中心点或者轴,默认中心缩放,和中间对称线为反转线,所以我决定这个横向,纵向缩小以左上角为中心点:

代码:

[java]  view plain  copy
  1. // 加载动画  
  2.         Animator anim = AnimatorInflater.loadAnimator(this, R.animator.scale);  
  3.         mMv.setPivotX(0);  
  4.         mMv.setPivotY(0);  
  5.         //显示的调用invalidate  
  6.         mMv.invalidate();  
  7.         anim.setTarget(mMv);  
  8.         anim.start();  

很简单,直接给View设置pivotX和pivotY,然后调用一下invalidate,就ok了。

下面看效果图:

Android动画分类和详解_第6张图片

好了,通过写xml声明动画,使用set嵌套set,结合orderring属性,也基本可以实现任何动画~~上面也演示了pivot的设置。

7、布局动画(Layout Animations)

主要使用LayoutTransition为布局的容器设置动画,当容器中的视图层次发生变化时存在过渡的动画效果。

基本代码为:

[java]  view plain  copy
  1. LayoutTransition transition = new LayoutTransition();  
  2.     transition.setAnimator(LayoutTransition.CHANGE_APPEARING,  
  3.             transition.getAnimator(LayoutTransition.CHANGE_APPEARING));  
  4.     transition.setAnimator(LayoutTransition.APPEARING,  
  5.             null);  
  6.     transition.setAnimator(LayoutTransition.DISAPPEARING,  
  7.             null);  
  8.     transition.setAnimator(LayoutTransition.CHANGE_DISAPPEARING,  
  9.             null);  
  10.     mGridLayout.setLayoutTransition(transition);  

过渡的类型一共有四种:

LayoutTransition.APPEARING 当一个View在ViewGroup中出现时,对此View设置的动画

LayoutTransition.CHANGE_APPEARING 当一个View在ViewGroup中出现时,对此View对其他View位置造成影响,对其他View设置的动画

LayoutTransition.DISAPPEARING  当一个View在ViewGroup中消失时,对此View设置的动画

LayoutTransition.CHANGE_DISAPPEARING 当一个View在ViewGroup中消失时,对此View对其他View位置造成影响,对其他View设置的动画

LayoutTransition.CHANGE 不是由于View出现或消失造成对其他View位置造成影响,然后对其他View设置的动画。

注意动画到底设置在谁身上,此View还是其他View。

好了下面看一个综合的例子:

布局文件:

[html]  view plain  copy
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:id="@+id/id_container"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <Button  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:onClick="addBtn"  
  12.         android:text="addBtns" />  
  13.   
  14.     <CheckBox  
  15.         android:id="@+id/id_appear"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:checked="true"  
  19.         android:text="APPEARING" />  
  20.   
  21.     <CheckBox  
  22.         android:id="@+id/id_change_appear"  
  23.         android:layout_width="wrap_content"  
  24.         android:layout_height="wrap_content"  
  25.         android:checked="true"  
  26.         android:text="CHANGE_APPEARING" />  
  27.   
  28.     <CheckBox  
  29.         android:id="@+id/id_disappear"  
  30.         android:layout_width="wrap_content"  
  31.         android:layout_height="wrap_content"  
  32.         android:checked="true"  
  33.         android:text="DISAPPEARING" />  
  34.   
  35.     <CheckBox  
  36.           android:id="@+id/id_change_disappear"  
  37.         android:layout_width="wrap_content"  
  38.         android:layout_height="wrap_content"  
  39.         android:checked="true"  
  40.         android:text="CHANGE_DISAPPEARING " />  
  41.   
  42. </LinearLayout>  

代码:

[java]  view plain  copy
  1. package com.example.zhy_property_animation;  
  2.   
  3. import android.animation.LayoutTransition;  
  4. import android.app.Activity;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.view.ViewGroup;  
  9. import android.widget.Button;  
  10. import android.widget.CheckBox;  
  11. import android.widget.CompoundButton;  
  12. import android.widget.CompoundButton.OnCheckedChangeListener;  
  13. import android.widget.GridLayout;  
  14.   
  15. public class LayoutAnimaActivity extends Activity implements  
  16.         OnCheckedChangeListener  
  17. {  
  18.     private ViewGroup viewGroup;  
  19.     private GridLayout mGridLayout;  
  20.     private int mVal;  
  21.     private LayoutTransition mTransition;  
  22.   
  23.     private CheckBox mAppear, mChangeAppear, mDisAppear, mChangeDisAppear;  
  24.   
  25.     @Override  
  26.     public void onCreate(Bundle savedInstanceState)  
  27.     {  
  28.         super.onCreate(savedInstanceState);  
  29.         setContentView(R.layout.layout_animator);  
  30.         viewGroup = (ViewGroup) findViewById(R.id.id_container);  
  31.   
  32.         mAppear = (CheckBox) findViewById(R.id.id_appear);  
  33.         mChangeAppear = (CheckBox) findViewById(R.id.id_change_appear);  
  34.         mDisAppear = (CheckBox) findViewById(R.id.id_disappear);  
  35.         mChangeDisAppear = (CheckBox) findViewById(R.id.id_change_disappear);  
  36.   
  37.         mAppear.setOnCheckedChangeListener(this);  
  38.         mChangeAppear.setOnCheckedChangeListener(this);  
  39.         mDisAppear.setOnCheckedChangeListener(this);  
  40.         mChangeDisAppear.setOnCheckedChangeListener(this);  
  41.   
  42.         // 创建一个GridLayout  
  43.         mGridLayout = new GridLayout(this);  
  44.         // 设置每列5个按钮  
  45.         mGridLayout.setColumnCount(5);  
  46.         // 添加到布局中  
  47.         viewGroup.addView(mGridLayout);  
  48.         //默认动画全部开启  
  49.         mTransition = new LayoutTransition();  
  50.         mGridLayout.setLayoutTransition(mTransition);  
  51.   
  52.     }  
  53.   
  54.     /** 
  55.      * 添加按钮 
  56.      *  
  57.      * @param view 
  58.      */  
  59.     public void addBtn(View view)  
  60.     {  
  61.         final Button button = new Button(this);  
  62.         button.setText((++mVal) + "");  
  63.         mGridLayout.addView(button, Math.min(1, mGridLayout.getChildCount()));  
  64.         button.setOnClickListener(new OnClickListener()  
  65.         {  
  66.   
  67.             @Override  
  68.             public void onClick(View v)  
  69.             {  
  70.                 mGridLayout.removeView(button);  
  71.             }  
  72.         });  
  73.     }  
  74.   
  75.     @Override  
  76.     public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)  
  77.     {  
  78.         mTransition = new LayoutTransition();  
  79.         mTransition.setAnimator(  
  80.                 LayoutTransition.APPEARING,  
  81.                 (mAppear.isChecked() ? mTransition  
  82.                         .getAnimator(LayoutTransition.APPEARING) : null));  
  83.         mTransition  
  84.                 .setAnimator(  
  85.                         LayoutTransition.CHANGE_APPEARING,  
  86.                         (mChangeAppear.isChecked() ? mTransition  
  87.                                 .getAnimator(LayoutTransition.CHANGE_APPEARING)  
  88.                                 : null));  
  89.         mTransition.setAnimator(  
  90.                 LayoutTransition.DISAPPEARING,  
  91.                 (mDisAppear.isChecked() ? mTransition  
  92.                         .getAnimator(LayoutTransition.DISAPPEARING) : null));  
  93.         mTransition.setAnimator(  
  94.                 LayoutTransition.CHANGE_DISAPPEARING,  
  95.                 (mChangeDisAppear.isChecked() ? mTransition  
  96.                         .getAnimator(LayoutTransition.CHANGE_DISAPPEARING)  
  97.                         : null));  
  98.         mGridLayout.setLayoutTransition(mTransition);  
  99.     }  
  100. }  

效果图:

Android动画分类和详解_第7张图片

动画有点长,耐心点看,一定要注意,是对当前View还是其他Views设置的动画。

当然了动画支持自定义,还支持设置时间,比如我们修改下,添加的动画为:

[java]  view plain  copy
  1. mTransition.setAnimator(LayoutTransition.APPEARING, (mAppear  
  2.                 .isChecked() ? ObjectAnimator.ofFloat(this"scaleX"01)  
  3.                 : null));  

则效果为:

Android动画分类和详解_第8张图片

原本的淡入,变成了宽度从中间放大的效果~~是不是还不错~~

3、View的anim方法

在SDK11的时候,给View添加了animate方法,更加方便的实现动画效果。

布局文件:

[html]  view plain  copy
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"   
  5.     >  
  6.   
  7.     <ImageView  
  8.         android:id="@+id/id_ball"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:src="@drawable/bol_blue" />  
  12.   
  13.     <LinearLayout  
  14.         android:layout_width="fill_parent"  
  15.         android:layout_height="wrap_content"  
  16.         android:layout_alignParentBottom="true"  
  17.         android:orientation="horizontal" >  
  18.   
  19.         <Button  
  20.             android:layout_width="wrap_content"  
  21.             android:layout_height="wrap_content"  
  22.             android:onClick="viewAnim"  
  23.             android:text="View Anim" />  
  24.   
  25.         <Button  
  26.             android:layout_width="wrap_content"  
  27.             android:layout_height="wrap_content"  
  28.             android:onClick="propertyValuesHolder"  
  29.             android:text="PropertyValuesHolder " />  
  30.           
  31.   
  32.     </LinearLayout>  
  33.   
  34. </RelativeLayout>  
代码:

[java]  view plain  copy
  1. package com.example.zhy_property_animation;  
  2.   
  3. import android.animation.ObjectAnimator;  
  4. import android.animation.PropertyValuesHolder;  
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.util.DisplayMetrics;  
  8. import android.util.Log;  
  9. import android.view.View;  
  10. import android.widget.ImageView;  
  11.   
  12. public class ViewAnimateActivity extends Activity  
  13. {  
  14.     protected static final String TAG = "ViewAnimateActivity";  
  15.   
  16.     private ImageView mBlueBall;  
  17.     private float mScreenHeight;  
  18.   
  19.     @Override  
  20.     protected void onCreate(Bundle savedInstanceState)  
  21.     {  
  22.         super.onCreate(savedInstanceState);  
  23.         setContentView(R.layout.view_animator);  
  24.   
  25.         DisplayMetrics outMetrics = new DisplayMetrics();  
  26.         getWindowManager().getDefaultDisplay().getMetrics(outMetrics);  
  27.         mScreenHeight = outMetrics.heightPixels;  
  28.         mBlueBall = (ImageView) findViewById(R.id.id_ball);  
  29.   
  30.     }  
  31.   
  32.     public void viewAnim(View view)  
  33.     {  
  34.         // need API12  
  35.         mBlueBall.animate()//  
  36.                 .alpha(0)//  
  37.                 .y(mScreenHeight / 2).setDuration(1000)  
  38.                 // need API 12  
  39.                 .withStartAction(new Runnable()  
  40.                 {  
  41.                     @Override  
  42.                     public void run()  
  43.                     {  
  44.                         Log.e(TAG, "START");  
  45.                     }  
  46.                     // need API 16  
  47.                 }).withEndAction(new Runnable()  
  48.                 {  
  49.   
  50.                     @Override  
  51.                     public void run()  
  52.                     {  
  53.                         Log.e(TAG, "END");  
  54.                         runOnUiThread(new Runnable()  
  55.                         {  
  56.                             @Override  
  57.                             public void run()  
  58.                             {  
  59.                                 mBlueBall.setY(0);  
  60.                                 mBlueBall.setAlpha(1.0f);  
  61.                             }  
  62.                         });  
  63.                     }  
  64.                 }).start();  
  65.     }                                                                                                                                                  }  

简单的使用mBlueBall.animate().alpha(0).y(mScreenHeight / 2).setDuration(1000).start()就能实现动画~~不过需要SDK11,此后在SDK12,SDK16又分别添加了withStartAction和withEndAction用于在动画前,和动画后执行一些操作。当然也可以.setListener(listener)等操作。

使用ObjectAnimator实现上面的变化,我们可以使用:PropertyValueHolder

[java]  view plain  copy
  1. PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat("alpha", 1f,  
  2.             0f, 1f);  
  3.     PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat("y"0,  
  4.             mScreenHeight / 20);  
  5.     ObjectAnimator.ofPropertyValuesHolder(mBlueBall, pvhX, pvhY).setDuration(1000).start();  

效果与上面一样。

运行结果:

Android动画分类和详解_第9张图片


你可能感兴趣的:(Android动画分类和详解)