深入理解Android动画Interpolator类的使用
2015-10-18 12:40:11 | 来源:玩转帮会 | 投稿:佚名 | 编辑:小柯

原标题:深入理解Android动画Interpolator类的使用

做过android动画的人对Interpolator应该不会陌生,这个类主要是用来控制android动画的执行速率,一般情况下,如果我们不设置,动画都不是匀速执行的,系统默认是先加速后减速这样一种动画执行速率。

android通过Interpolator类来让我们自己控制动画的执行速率,还记得上一篇博客中我们使用属性动画实现的旋转效果吗?在不设置Interpolator的情况下,这个动画是先加速后减速,我们现在使用android系统提供的类LinearInterpolator来设置动画的执行速率,LinearInterpolator可以让这个动画匀速执行,我们来看一个案例,我们有两个TextView重叠放在一起,点击旋转按钮后这两个TextView同时执行旋转动画,不同的是一个设置了LinearInterpolator,而另外一个什么都没有设置,代码如下:

LinearInterpolator ll = new LinearInterpolator();
ObjectAnimator animator = ObjectAnimator.ofFloat(tv, "rotation",
                    0f, 360f);
animator.setInterpolator(ll);
animator.setDuration(5000);
animator.start();
ObjectAnimator animator2 = ObjectAnimator.ofFloat(tv2, "rotation",
                    0f, 360f);
animator2.setDuration(5000);
animator2.start();

效果图如下:

深入理解 Android 动画 Interpolator 类的使用 - 技术文摘 | 玩赚乐 1

现在我们可以很清楚的看到这里的差异,一个TextView先加速后减速,一个一直匀速运动。

这就引起了我的好奇,究竟LinearInterpolator做了什么,改变了动画的执行速率。这里我们就要看看源码了。

当我们调用animator.setInterpolator(ll);的时候,调用的是ValueAnimator方法中的setInterpolator方法,源码如下:

public void setInterpolator(TimeInterpolator value) {
        if (value != null) {
            mInterpolator = value;
        } else {
            mInterpolator = new LinearInterpolator();
        }
    }

我们看到这里有一个mInterpolator变量,如果我们不执行这个方法,那么mInterpolator 的默认值是多少呢?

我们找到了这样两行代码:

// The time interpolator to be used if none is set on the animation
    private static final TimeInterpolator sDefaultInterpolator =
            new AccelerateDecelerateInterpolator();
private TimeInterpolator mInterpolator = sDefaultInterpolator;

这下明朗了,如果我们不设置,那么系统默认使用AccelerateDecelerateInterpolator,AccelerateDecelerateInterpolator又是什么呢?继续看源码:

public class AccelerateDecelerateInterpolator extends BaseInterpolator
        implements NativeInterpolatorFactory {
    public AccelerateDecelerateInterpolator() {
    }
    @SuppressWarnings({"UnusedDeclaration"})
    public AccelerateDecelerateInterpolator(Context context, AttributeSet attrs) {
    }
    public float getInterpolation(float input) {
        return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
    }
    /** @hide */
    @Override
    public long createNativeInterpolator() {
        return NativeInterpolatorFactoryHelper.createAccelerateDecelerateInterpolator();
    }
}

这里的一个核心函数就是getInterpolation,使用了反余弦函数,input传入的值在0-1之间,因此这里返回值的变化速率就是先增加后减少,对应的动画执行速率就是先增加后减速。有兴趣的童鞋可以使用MatLab来画一下这个函数的图像。而当我们实现了LinearInterpolator之后,情况发生了变化:

public class LinearInterpolator extends BaseInterpolator implements NativeInterpolatorFactory {
    public LinearInterpolator() {
    }
    public LinearInterpolator(Context context, AttributeSet attrs) {
    }
    public float getInterpolation(float input) {
        return input;
    }
    /** @hide */
    @Override
    public long createNativeInterpolator() {
        return NativeInterpolatorFactoryHelper.createLinearInterpolator();
    }
}

这里干净利落直接返回了input,没有经过任何计算。input返回的值是均匀的,因此动画得以匀速执行。

看到这里,大家应该就明白了,如果我们想要控制动画的执行速率,应该重写getInterpolation方法就能实现。为了证实我们的猜想,我们继续看源码。

大部分时候,我们使用的系统提供的各种各样的**Interpolator,比如上文说的LinearInterpolator,这些类都是继承自Interpolator,而Interpolator则实现了TimeInterpolator接口,我们来看看一个继承结构图:

深入理解 Android 动画 Interpolator 类的使用 - 技术文摘 | 玩赚乐 2

那么这个终极大Boss TimeInterpolator究竟是什么样子呢?

package android.animation;
/**
 * A time interpolator defines the rate of change of an animation. This allows animations
 * to have non-linear motion, such as acceleration and deceleration.
 */
public interface TimeInterpolator {
    /**
     * Maps a value representing the elapsed fraction of an animation to a value that represents
     * the interpolated fraction. This interpolated value is then multiplied by the change in
     * value of an animation to derive the animated value at the current elapsed animation time.
     *
     * @param input A value between 0 and 1.0 indicating our current point
     *        in the animation where 0 represents the start and 1.0 represents
     *        the end
     * @return The interpolation value. This value can be more than 1.0 for
     *         interpolators which overshoot their targets, or less than 0 for
     *         interpolators that undershoot their targets.
     */
    float getInterpolation(float input);
}

源码还是很简单的,只有一个方法,就是getInterpolation,看来没错,就是它了,如果我们想要自定义Interpolator,只需要实现TimeInterpolator接口的getInterpolation方法就可以了,getInterpolation方法接收的参数是动画执行的百分比,这个值是均匀的。

我们来个简单的案例:

public class TanInterpolator implements TimeInterpolator {
    @Override
    public float getInterpolation(float t) {
        return (float) Math.sin((t / 2) * Math.PI);
    }
}

在动画中使用:

TanInterpolator tl = new TanInterpolator();
ObjectAnimator animator = ObjectAnimator.ofFloat(tv, "rotation", 0f, 360f);
animator.setInterpolator(tl);
animator.setDuration(5000);
animator.start();

咦?这是什么效果?这是一开始速度很大,然后逐渐减小到0的动画效果.

原因如下:

看下图,这是sin函数图象:

深入理解 Android 动画 Interpolator 类的使用 - 技术文摘 | 玩赚乐 3

x取0-0.5PI,y值则为0-1,这一段曲线的斜率逐渐减小至0,这也是为什么我们的动画一开始执行很快,后来速度逐渐变为0.

好了,看完这些,想必大家已经理解了这个类的使用了吧。

tags:

上一篇  下一篇

相关:

通过分析JDK源代码研究Hash存储机制

通过 HashMap、HashSet 的源代码分析其 Hash 存储机制实际上,HashSet 和 HashMap 之间有很多相似之处,对于

餐具用的那些材料安全吗?

餐具用于分发或摄取食物的器皿和用具。餐具包括成套的金属器具、陶瓷餐具、茶具酒器、玻璃器皿、盘碟和托盘

对外貌作判断这件事,人类特别擅长

为什么人们面对一张脸,只需要一秒不到的时间就可以判断出她(他)美不美,甚至可以从一到十打出个分数来?

十年前的魔戒三部曲,今天依然秒杀市场上绝大多数电影

必须答一下这个!为什么《魔戒》/《指环王》(以下统称魔戒)三部曲放到今天来看依然能秒杀市场上绝大多数电

「腹肌撕裂者」请注意,你们这是在练水桶腰

10 秒看全文 1 腹肌显露,不靠练腹肌,只靠体脂低,另外,局部减脂不靠谱! 2 一般人为身材,腹肌训练不必

互联网产品经理四大角色定位

准确的角色定位对产品经理来说非常重要。有人认为产品经理就是产品的管家婆,其实这种定位有些偏差,管家婆

放松,呼吸,用力,吼

先扔个人观点结论:轻重量到中等重量较轻重量:举起吸气,下落呼气中等重量:举起呼气,下落吸气充分呼吸,

开了帮垂死之人完成愿望的公司,其中一个愿望是:去月球

《去月球》(To the Moon)是我在《幽城幻剑录》之后遇到的最好的游戏剧本。最开始接触这个作品时,以为这是

证人目击到了事实?他们很有可能记错了嫌疑人的长相

心理学角度来看这个问题,出干货。首先人对记忆的使用是分成 3 个阶段的,而每一个阶段都有可能出现失误导致

后羿射了太阳,可能会导致全民SAD

是的,天气在情绪中扮演了一个重要的,却时常被忽视的角色。Schwarz & Clore (1983) 发现,在晴天问人们的情

站长推荐: