背景动画与重复

时间:2014-12-27 21:33:16

标签: android android-animation android-imageview

在我的项目中,我想无限期地使用大图像模式为背景设置动画:

enter image description here

我认为最初使用Matrix(用于缩放和翻译)和ValueAnimator来创建翻译动画,但我不知道如何重复该模式。

发展这种效果的方法是什么?谢谢你的帮助。


更新,我的源代码没有重复(注意:在GIF动画中我水平绘制图像模式以表示简单但我需要实际上垂直翻译动画):

background.setImageResource(R.drawable.background);
background.setScaleType(ScaleType.MATRIX);

ValueAnimator animator = ValueAnimator.ofFloat(0, 1);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
    private Matrix matrix = new Matrix();
    @Override public void onAnimationUpdate(ValueAnimator animation) {
        float factor = (Float) animation.getAnimatedValue();
        int width = background.getDrawable().getIntrinsicWidth();
        int height = background.getDrawable().getIntrinsicHeight();
        float scale = (float) background.getWidth() / (float) width;
        matrix.reset();
        matrix.postTranslate(0, -height * factor);
        matrix.postScale(scale, scale);
        background.setImageMatrix(matrix);
    }
});

animator.setInterpolator(new LinearInterpolator());
animator.setRepeatCount(ValueAnimator.INFINITE);
animator.setRepeatMode(ValueAnimator.RESTART);
animator.setDuration(10000);
animator.start();

1 个答案:

答案 0 :(得分:2)

我最终扩展了BitmapDrawable以覆盖draw()方法:

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.background);
BitmapDrawable drawable = new BitmapDrawable(getResources(), bitmap) {
    @Override
    public void draw(Canvas canvas) {
        super.draw(canvas);
        canvas.drawBitmap(getBitmap(), 0, getIntrinsicHeight(), null);
    }
};

background.setImageDrawable(drawable);
background.setScaleType(ScaleType.MATRIX);

ValueAnimator animator = ValueAnimator.ofFloat(0);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
    private Matrix matrix = new Matrix();
    @Override
    public void onAnimationUpdate(ValueAnimator animator) {
        matrix.reset();
        int height = background.getDrawable().getIntrinsicHeight();
        float translate = -height * animator.getAnimatedFraction();
        matrix.postTranslate(0, translate);
        float width = background.getDrawable().getIntrinsicWidth();
        float scale = background.getWidth() / width;
        matrix.postScale(scale, scale);
        background.setImageMatrix(matrix);
    }
});

animator.setInterpolator(new LinearInterpolator());
animator.setRepeatCount(ValueAnimator.INFINITE);
animator.setRepeatMode(ValueAnimator.RESTART);
animator.setDuration(10000);
animator.start();

注意:drawable.setTileModeXY(TileMode.REPEAT, TileMode.REPEAT)不适用于imageView.setScaleType(ScaleType.MATRIX)

所以我不知道这是不是一个好习惯,但它是我目前唯一找到的。如果您有任何改进技术的想法,请分享。