Skip to content Skip to sidebar Skip to footer

View Pdfs Stored In Assets Folder From Listview Click In Fragment

I have created a ListView in which I would like each item to open a certain .pdf file located in assets/PDFS folder located within my Android App. The following code does not throw

Solution 1:

You can't open a file in your assets in another app. You need to write it to disk somewhere both apps can read it first, such as external storage.


Post a Comment for "View Pdfs Stored In Assets Folder From Listview Click In Fragment"