我已经使用Scale Animation在我的应用程序中缩放图像。它可以正常缩放图像级别,这是我们想要的,但我的问题是缩放图像时缩放图像不平滑。图像大小为 1.4 MB。
ScaleAnimation scaleAnimation = new ScaleAnimation(1f, 2.5f,
1f, 2.5f, Animation.RELATIVE_TO_PARENT,
1.05f, Animation.RELATIVE_TO_PARENT, 1.05f);
scaleAnimation.setFillAfter(true);
scaleAnimation.setDuration(400);
img.startAnimation(scaleAnimation);