Is there a way to open a local file (pdf, doc, odt, etc) with default viewer in IOS ?
Something like ShellExecute in Vb..
In B4a I used this routine:
Thanks
Something like ShellExecute in Vb..
In B4a I used this routine:
Dim intent1 As Intent
intent1.Initialize(intent1.ACTION_VIEW, "file://" & fileName)
intent1.SetType("application/pdf") ' or application/msword, ...
intent1.WrapAsIntentChooser("Selezionare il visualizzatore file " & estensione)
StartActivity(intent1)
Thanks