Android Question E-Book

ibra939

Active Member
Licensed User
Longtime User
If i buy book from google play is read only by app if can i make extract the apk to sent or use it by other phone by using the apk because like

PDFium - Pdfview2 is read only without store the pdf on the phone or temporary is can extract the PDF through the app??

 

DonManfred

Expert
Licensed User
Longtime User
Initialize the PDFium from an Inputstream. You can get the Inputstream from a HttpJob Result
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
great there is PDFium example for HttpJob
Initialize the PDFium from an Inputstream. You can get the Inputstream from a HttpJob Result
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "https://cplusplus.com/files/tutorial.pdf")
i.SetType("application/pdf")
StartActivity(i)

i try this with PDFium but show with options to download i want disable save and download
 
Upvote 0
Top