Android Question Problem with adobe reader

cncncn

Member
Licensed User
Longtime User
Hi,

Sometimes, adobe open a bad document and i have to open again for the right document.
Why?

Thanks for your futures responses
 

DonManfred

Expert
Licensed User
Longtime User
You should explain more details what happen, what errors you get, what code you are using and what you expect to happen...
 
Upvote 0

cncncn

Member
Licensed User
Longtime User
unfortunately my problem isn't resolved... My application open pdf file but when my file is updated from server, i need to open then close then open my file for get good version. My code :
B4X:
Dim PdfIntent As Intent     

PdfIntent.Initialize(PdfIntent.ACTION_VIEW,File.Combine(DestDT,DT))      PdfIntent.SetComponent("android/com.android.internal.app.ResolverActivity")
PdfIntent.SetType("application/pdf")
StartActivity(PdfIntent)
 
Upvote 0
Top