Hello,
I want to open the dialer preloaded with the phone number
is it possible to write like this code
i didn't find ACTION_DIAL in the Intent properties and i don't wanna use ACTION_CALL because of the permission
if its possible , there is anyway to open the SMS application preloaded with number and message ?
thanks in advance
I want to open the dialer preloaded with the phone number
is it possible to write like this code
B4X:
startActivity(new Intent(ACTION_DIAL, Uri.parse("tel:012345678")));
i didn't find ACTION_DIAL in the Intent properties and i don't wanna use ACTION_CALL because of the permission
B4X:
Dim i As Intent
i.Initialize(i.[COLOR="Red"]ACTION_DIAL[/COLOR] , "tel:012345678" )
StartActivity(i)
if its possible , there is anyway to open the SMS application preloaded with number and message ?
thanks in advance