PdfiumAndroid
PdfiumAndroid copied to clipboard
how to give path to pdf file which is present in assets folder ?
try {
fd = ParcelFileDescriptor.open(new File("???"),MODE_READ_WRITE);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Maybe PdfiumAndroid not support asset,I found below code in AndroidPdfViewer, AndroidPdfViewer copy asset pdf to cache dir

@oncealong thanks for the answer.