I am trying to implement an image viewer using TouchImageView
.
TouchImageView
is placed in a Fragment.- And I set a large image(2500x3000) to this
TouchImageView
, (loading with inSampleSize=8). - Then I pinch zoom-in the image, it is displayed at low resolution.(It's no wonder.)
However, I want to display a high resolution image at zoom-in, like Android Gallery app. How to do this?
Thanks in advance.