open application

askez

Member
Licensed User
Longtime User
hello,
i have an applcation that show asp pages from my website using webview

https://play.google.com/store/apps/..._result#?t=W251bGwsMSwyLDEsInRpcGEuY28uaWwiXQ..

how can i open the application from another application a go to a spesific page?

i'm using thsi code but it only open the applcation eith the default page

Dim pm As PackageManager
Dim in As Intent
in.Initialize("","")
in=pm.GetApplicationIntent("tipa.co.il")
If in.IsInitialized Then
StartActivity(in)
End If
 
Top