AndroidPdfViewer icon indicating copy to clipboard operation
AndroidPdfViewer copied to clipboard

scroll by arrow keys

Open korre73 opened this issue 4 years ago • 1 comments
trafficstars

I want to scroll my PDF with the arrow keys. What is the best way to get this?

korre73 avatar Aug 24 '21 14:08 korre73

if (isValidPageNumber(String.valueOf(pageNumber))) { pdfView.jumpTo(pageNumber, true);

            }

where pageNumber is taking from onPageChanged

pageNumber = page + 1;

Apsalogics avatar Sep 09 '21 08:09 Apsalogics