I know that we can send SMS via built-in SMS app in this way -
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setData(Uri.parse("sms:"));
sendIntent.putExtra("sms_body", "");
startActivity(sendIntent);
But in my app, I want to modify some text of the sms body before sending it to the receiver. Is there any way?
I know I can do it with sendTextMessage method of SmsManager. I just want to know, is it also possible with the built-in SMS app?
Thank you.