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
You can put extra information by using Intent.PutExtra.
In your activity_resume you can get the intent by calling Activity.GetStartingIntent. You should then check if the extra field exists and fetch the data.