图像缩放 2 倍后,我的图像质量很差。有什么办法可以保持它的质量吗?没有缩放它看起来很棒。
我试图增加图像尺寸但没有影响。
爪哇代码:
ImageView imgView = findViewById(R.id.image_1);
Animation scaleAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.scale);
scaleAnimation.setFillAfter(true);
imgView.startAnimation(scaleAnimation);
scale.xml 代码:
<scale
android:duration="200"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="0%"
android:pivotY="0%"
android:toXScale="2.0"
android:toYScale="2.0">
</scale>