jonijm
Results
2
comments of
jonijm
Hi! I was able to reset the zoom of any page when returning to it by doing: ``` @Override public void onPageSelected(int position) { SubsamplingScaleImageView v = (SubsamplingScaleImageView)((FrameLayout)pdfViewPager.getChildAt(position)).getChildAt(1); v.resetScaleAndCenter(); }...
> Maybe it's simpler than this, as in the issue #8, you can directly set the scale to the PdfViewPager > > ``` > pdfViewPager.setScaleX(1.5f); > ``` > > then...