DImuthuUpe / AndroidPdfViewer

Android view for displaying PDFs rendered with PdfiumAndroid
Apache License 2.0
8.18k stars 1.91k forks source link

Adding scroll and zoom listeners #1027

Open aquintiliano opened 3 years ago

aquintiliano commented 3 years ago

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

vimalcvs commented 2 years ago
  pdfView = findViewById(R.id.pdfView);
    pdfView.setMinZoom(1f);
    pdfView.setMidZoom(2.5f);
    pdfView.setMaxZoom(10.0f);