Best way to include pdfs in an app

后端 未结 1 1369
盖世英雄少女心
盖世英雄少女心 2020-12-11 13:47

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

相关标签:
1条回答
  • 2020-12-11 14:39

    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.

    0 讨论(0)
提交回复
热议问题