AndroidPdfViewer
AndroidPdfViewer copied to clipboard
How to disable zooming?
No user manipulation of files is required
Add this code in onCreate:
Constants.Pinch.MINIMUM_ZOOM = 1; Constants.Pinch.MAXIMUM_ZOOM = 1;
`pdfView = findViewById(R.id.pdfView);
pdfView.setMinZoom(1f);
pdfView.setMidZoom(1f);
pdfView.setMaxZoom(1f);`