I have to develop an app which is basically a pdf reader: it is composed by a list, each list element is a pdf file name, when user clicks on a list element the pdf is poppe
You can add a ContentProvider
to your app that streams the PDFs to the other process from the resource. For example, my StreamProvider extends Android's FileProvider
to add support for serving files from raw resources or assets. The demo project, in particular, demonstrates serving a PDF from assets.