AndroidPdfViewer icon indicating copy to clipboard operation
AndroidPdfViewer copied to clipboard

How to disable zooming?

Open roybill opened this issue 6 years ago • 2 comments

No user manipulation of files is required

roybill avatar Nov 09 '19 08:11 roybill

Add this code in onCreate:

Constants.Pinch.MINIMUM_ZOOM = 1; Constants.Pinch.MAXIMUM_ZOOM = 1;

bonyhardian avatar Feb 03 '20 03:02 bonyhardian

`pdfView = findViewById(R.id.pdfView);

pdfView.setMinZoom(1f);
pdfView.setMidZoom(1f);
pdfView.setMaxZoom(1f);`

vimalcvs avatar Aug 02 '22 13:08 vimalcvs