Hi:
I need to pass parameters to another application by code
Use this code, and I've tried several things but can not get it to work.
Imagine you want to open the browser and pass an address, as it should do, or another pass any other data application
thanks
regards
Jesús
I need to pass parameters to another application by code
Use this code, and I've tried several things but can not get it to work.
B4X:
Try
Dim Intent1 As Intent
Dim pm As PackageManager
Intent1 = pm.GetApplicationIntent("com.sec.android.app.sbrowser")
StartActivity (Intent1)
Catch
ToastMessageShow("Error al ejecutar el programa", True)
End Try
Imagine you want to open the browser and pass an address, as it should do, or another pass any other data application
thanks
regards
Jesús