Greetings.
Thank you in advance for answering my question.
How do I set up an intent to start the Drive PDF Viewer with a specific file?
For example, the code below (courtesy of NJDude here) launches the Adobe Reader for a speciific pdf.
Sandy
Thank you in advance for answering my question.
How do I set up an intent to start the Drive PDF Viewer with a specific file?
For example, the code below (courtesy of NJDude here) launches the Adobe Reader for a speciific pdf.
B4X:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "file:///" & File.DirDefaultExternal & "/test.pdf")
i.SetComponent("com.adobe.reader/.AdobeReader")
StartActivity(i)
Sandy