But nothing is happening with this code
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, "file://" & File.Combine(File.DirRootExternal & "/TestPDF/", "test2.pdf") & "#zoom=10")
Intent1.SetComponent("android/com.android.internal.app.ResolverActivity")
Intent1.SetType("application/pdf")
How can I set the parameters for opening a LOCAL PDF file ?
In this Code line :
Intent1.Initialize(Intent1.ACTION_VIEW, "file://" & File.Combine(File.DirRootExternal & "/TestPDF/", "test2.pdf") & "#zoom=10")
I would like to set the zoom factor to 10 with the syntax "#zoom=10" for opening a local PDF file.
But it didn't work.
What is the true syntax for setting such parameter ?