Answers for "send sms example in android"

1

send sms programmatically android

Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:" + srcNumber)); 
                    intent.putExtra( "sms_body", message ); 
                    startActivity(intent);
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language