I have use Scale Animation for zooming an image in my app. It's working fine zoom image level proper which we want but my issue is when zooming the image not zoom smoother. image size is 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);