I have bad image quality after image scaling 2 times bigger. Is there any way to keep its quality? Without scaling it looks great.
I tried to increase image dimensions but with no affect.
java code:
ImageView imgView = findViewById(R.id.image_1);
Animation scaleAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.scale);
scaleAnimation.setFillAfter(true);
imgView.startAnimation(scaleAnimation);
scale.xml code:
<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>