AndroidPdfViewer icon indicating copy to clipboard operation
AndroidPdfViewer copied to clipboard

Adding scroll and zoom listeners

Open aquintiliano opened this issue 4 years ago • 1 comments

This commit adds 2 more listeners that I need in a project:

ScrollListener (differs from PageScrollListener, since I need X and Y position) ZoomListener

If you are not ok with the code, please, let me know, otherwise, please, merge it

Thanks

aquintiliano avatar Aug 03 '21 11:08 aquintiliano

  pdfView = findViewById(R.id.pdfView);
    pdfView.setMinZoom(1f);
    pdfView.setMidZoom(2.5f);
    pdfView.setMaxZoom(10.0f);

vimalcvs avatar Aug 02 '22 13:08 vimalcvs