how stop
how to stop pdfiumCore.renderPageBitmap.
Why you would like to stop main rendering process? You can call pdfView.recycle() to unload document, but you cannot stop rendering method
I want to do the mini page to display thumbnails , when i slide needs renderbitmap .
like
`ThumbnailViewGroup extends ViewGroup{
onTouchEvent(MotionEvent event){ case DOWN: case MOVE: pdfiumCore.renderPageBitmap.... break; return true; } }`
You can modify library, but it is not possible out of the box.
ok, why is the rendering time a little long ? It takes me 10 seconds to render 16 images (mini page).
Whether openPage and renderPageBitmap can be used in different locks?