Android开发技术中心Android开发Android知识

Android基础之动画资源浅析

2017-04-06  本文已影响122人  Reathin

动画

在开发中,为了让我们的App更加生动,我们往往会加入一些动画效果,下面我们来说说安卓中的动画。

安卓中提供了帧动画,补间动画,属性动画。下面来一一说明

帧动画

具体实现

第一:

新建一个 drawable 资源 以animation-list 为根节点。子节点 < item />有两个属性,一个是 drawable 为当前帧的图像, duration 为当前帧保留时间。

第二:

给 ImageView 或者其他 View 设置关联 drawable。可以作为 View 的 background 或者ImageView 的 src。

第三:

在 java 代码中,通过 View.getBackground();或者 ImageView.getDrawable()。得到已经关联 View 的 Drawable 对象,转成 AnimationDrawable 对象。然后调用 AnimationDrawable.start()方法开始动画。

也可以通过 java 代码动态加载 Drawable 资源,关联给 View,再开始动画。

AnimationDrawable drawable = (AnimationDrawable) ContextCompat.getDrawable(this, R.drawable.animation_list);
ImageView iv_anim = (ImageView) findViewById(R.id.iv_anim);
iv_anim.setImageDrawable(drawable);
drawable.start();

Forexample:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
    android:oneshot="false"
    >
    <item
        android:drawable="@drawable/load_1"
        android:duration="200"/>
    <item
        android:drawable="@drawable/load_2"
        android:duration="200"/>
    <item
        android:drawable="@drawable/load_3"
        android:duration="200"/>
    <item
        android:drawable="@drawable/load_4"
        android:duration="200"/>
    <item
        android:drawable="@drawable/load_5"
        android:duration="200"/>
    <item
        android:drawable="@drawable/load_6"
        android:duration="400"/>
</animation-list>
vEnE73f.gif

补间动画

补间动画的类型

透明度

android:fromAlpha 开始的透明度
android:toAlpha 结束的透明度

类型:float (0.0透明-1.0不透明)

平移

android:fromXDelta="0" X轴开始的位移
android:toXDelta="320" X轴结束的位移
android:fromYDelta="0" Y轴开始的位移
android:toYDelta="0" Y轴结束的位移

旋转

android:fromDegrees="0" 开始的角度
android:toDegrees="360" 结束的角度

缩放

android:fromXScale="1" X轴开始的缩放倍数
android:fromYScale="1" Y轴开始的缩放倍数
android:toXScale="2.0" X轴结束的缩放倍数
android:toYScale="2.0" Y轴结束的缩放倍数

补间动画的动画资源的常用属性及实现

常用的属性:

android:pivotX="50%"
android:pivotY="50%"
用于控制 旋转/缩放 的中心,(类型:百分比)

实现方式:

//Java代码创建动画
ScaleAnimation animation = new ScaleAnimation();
//xml 加载动画
Animation animation = AnimationUtils.loadAnimation(this, R.anim.scale_1);    
iv_anim.startAnimation(animation);//开始一个动画
iv_anim.clearAnimation();//清除该控件的动画效果

补间动画的Java代码实现

透明动画:

new AlphaAnimation(fromAlpha, toAlpha)

例如:从不透明都接近透明

new AlphaAnimation(1.0f, 0.1f);

缩放动画:

new ScaleAnimation(fromX, toX, fromY, toY, pivotXType, pivotXValue, pivotYType, pivotYValue);

例如:从控件中心放大一倍

new ScaleAnimation(1.0f, 2.0f, 1.0f, 2.0f,ScaleAnimation.RELATIVE_TO_SELF, 0.5f,ScaleAnimation.RELATIVE_TO_SELF, 0.5f);

旋转动画:

new RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue);

例如:从控件中心顺时针旋转180度

new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f,
                    Animation.RELATIVE_TO_SELF, 0.5f);

平移动画:

new TranslateAnimation(fromXType, fromXValue, toXType, toXValue, fromYType, fromYValue, toYType, toYValue);

例如:从控件自己的位置开始,向下移动自己的一倍距离。

new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF, 0,
                    Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF, 1f);

补间动画的监听方法

通过 Animation.setAnimationListener 的方法。传入 AnimationListener 的接口对象。实现接口的三个方法。

@Override
public void onAnimationStart(Animation animation) {
    //动画开始的时候调用
}
            
//注意:如果是 AnimationSet 组合动画,则此回调不执行。
@Override
public void onAnimationRepeat(Animation animation) {
    //动画重复的时候调用
}
@Override
public void onAnimationEnd(Animation animation) {
    //动画结束的时候调用
}

属性动画

属性动画介绍

自Android 3.0版本开始,系统给我们提供了一种全新的动画模式,属性动画(property animation),它的功能非常强大,弥补了之前补间动画的一些缺陷,几乎是可以完全替代掉补间动画了。

属性动画与补间动画的区别

最大的区别是补间动画就算控件移动到任何位置,控件本身位置还是不变。
而属性动画是直接改变控件的布局位置。

属性动画资源文件的常用属性

关键:propertyName 属性。
动画类型名字

属性动画的具体实现

ObjectAnimator oa = ObjectAnimator.ofFloat(target, propertyName, values);

例如:

ObjectAnimator oa = ObjectAnimator.ofFloat(id_ball, "rotation", 0, 180);
oa.setDuration(5000)//动画执行的时间
oa.setRepeatCount(1);//动画的重复次数
oa.setRepeatMode(ObjectAnimator.REVERSE);//动画的重复方式
oa.start();//开始动画

多个属性动画一起执行方式1:

PropertyValuesHolder pvh1 = PropertyValuesHolder.ofFloat("scaleX", 1.0f, 2.0f);
PropertyValuesHolder pvh2 = PropertyValuesHolder.ofFloat("scaleY", 1.0f, 2.0f);
PropertyValuesHolder pvh3 = PropertyValuesHolder.ofFloat("alpha", 1.0f, 0.2f);
ObjectAnimator.ofPropertyValuesHolder(id_ball, pvh1, pvh2, pvh3 ).setDuration(4000).start();

多个属性动画一起执行的方式2:

ObjectAnimator anim = ObjectAnimator.ofFloat(id_ball, "null", 1.0F, 0.1F, 1).setDuration(4000);
anim.addUpdateListener(new AnimatorUpdateListener() {
    @Override
    public void onAnimationUpdate(ValueAnimator animation) {
        //得到变化后的value大小
        float cVal = (Float) animation.getAnimatedValue();
        id_ball.setAlpha(cVal);//改变控件的透明度
        id_ball.setScaleX(cVal);//改变控件的缩放
        id_ball.setScaleY(cVal);//***
        id_ball.setTranslationX(id_ball.getWidth() * (1 - cVal));
    }});
anim.start();
codesample-1490721925652.gif

前几天在gihub上看到的一个效果,其实就是用的属性动画实现的

上一篇下一篇

猜你喜欢

热点阅读