Bonjour,
Intent opens the SMS app on certain Smartphones, not on all smartphones. Idem to take pictures
This code works on some smartphones and not others
Thank you
Intent opens the SMS app on certain Smartphones, not on all smartphones. Idem to take pictures
B4X:
Sub Btn_Click
Dim number, message As String
number = "0123456789"
message = "Hello"
Dim In As Intent
In.Initialize(In.ACTION_VIEW, "sms:" & number)
In.PutExtra("sms_body", Message)
StartActivity(In)
End sub
Thank you