ImageView缩小并缩放android中的图像动画

时间:2017-05-11 07:04:11

标签: android android-animation splash-screen

我希望图像缩小并缩放为Twitter启动画面动画,但我无法先缩小图像和缩放。这是我的代码

imageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            imageView.animate()
                    .setStartDelay(500)
                    .setDuration(1000)
                    .scaleX(20)
                    .scaleY(20)
                    .alpha(0);
        }
    });

1 个答案:

答案 0 :(得分:1)

您可以使用ObjectAnimator执行几乎任何动画,而且非常流畅。

以下是示例代码。在这种情况下,图像将从1x放大到2x,您可以根据需要调整值。现在如果要缩小然后将2x更改为0.5x,这会将图像缩小到原始图像的50%。

    ObjectAnimator scaleXAnimation = ObjectAnimator.ofFloat(imageView, "scaleX", 1.0f, 2.0f);
    scaleXAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
    scaleXAnimation.setDuration(1500);
    ObjectAnimator scaleYAnimation = ObjectAnimator.ofFloat(imageView, "scaleY", 1.0f, 2.0f);
    scaleYAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
    scaleYAnimation.setDuration(1500);
    ObjectAnimator alphaAnimation = ObjectAnimator.ofFloat(imageView, "alpha", 1.0F, 0F);
    alphaAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
    alphaAnimation.setDuration(1500);


    AnimatorSet animatorSet = new AnimatorSet();
    animatorSet.play(scaleXAnimation).with(scaleYAnimation).with(alphaAnimation);
    animatorSet.setStartDelay(500);
    animatorSet.start();