Answers for "how to get sms i send programmatically in android"

2

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