hi
I have a button in my app, when I press it to do a phone number and call.
I used this code,
Open the dialer, but not start the call.
How do I start the phone call ?
Thanks
I have a button in my app, when I press it to do a phone number and call.
I used this code,
B4X:
Sub tel4_Click
Dim result As Int
result = Msgbox2("1530", "Vuoi chiamare la guardia costiera ?", "Si", "", "No", Null)
If result = DialogResponse.Positive Then
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "tel:036275735")
StartActivity(i)
End If
End Sub
Open the dialer, but not start the call.
How do I start the phone call ?
Thanks