I can bring up Skype from my B4A app, but how do I
pass it a phone number as I am using this intent from thedesolatesoul:
Dim in As Intent
Dim pm As PackageManager
in = pm.GetApplicationIntent("com.skype.raider")
If in.IsInitialized Then StartActivity(in)
StartActivity(in)
Sub mnuSkype_Click
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "skype:" & user_name)
i.SetComponent("com.skype.raider")
i.PutExtra("confirm", "Yes")
StartActivity(i)
End Sub
"user_name" is a variable containing the userid that you are making a call to.