Android Question Open SMS window

Shay

Well-Known Member
Licensed User
Longtime User
Hi

is there a way to open SMS window for writing new SMS?
(And can I open it with parameters - such to whom to send)

thanks
 

beni_feld

Member
Licensed User
Longtime User
Hi

is there a way to open SMS window for writing new SMS?
(And can I open it with parameters - such to whom to send)

thanks

Try this
B4X:
Sub OpenNewSMS(PhoneNumber As String)
   Dim i As Intent
 
   i.Initialize(i.ACTION_VIEW, "sms:" & PhoneNumber)
   i.PutExtra("sms_body", "My text")
   StartActivity(i)
End Sub


BN
 
Upvote 0
Top