Launching text messaging application

I have this code to open messaging. I want to add body text to it

            Intent i6 = new Intent(Intent.ACTION_VIEW, Uri
                    .parse("sms:9986377561"));
            startActivity(i6);

add body text

body: test text

+3
source share
1 answer
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "The SMS text"); 
sendIntent.putExtra("address", "phoneNumber1;phoneNumber2;...");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
+3
source

Source: https://habr.com/ru/post/1779113/


All Articles