I use PhotoView
in my project and use Glide
to load image into it.
ViewPager + PhotoView
load local image.
Glide.with(mContext)
.load(imagePaths.get(position))
.skipMemoryCache(false)
.centerCrop()
.crossFade()
.into(photoView);
But the zoom in/out operation is not smooth at all.
Who can tell me why ??