Android Code Snippet Intent Call Direct Chat Skype

With this intent you can call in direct mode chat on Skype with skypeid that you want:

B4X:
        Dim skypeId As String = "devil-app"
        Dim collegati As String = "skype:" & skypeId & "?chat"
        Dim skype As Intent
        skype.Initialize(skype.ACTION_VIEW, collegati)
        skype.SetComponent("com.skype.raider")
        StartActivity(skype)
 
Top