I'm using below code for sending sms using native sms composer
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("address", "1234567890");
intent.putExtra("sms_body", "Hai");
intent.setData(Uri.parse("smsto:"+"1234567890"));
//intent.putExtra("exit_on_sent", true);
startActivityForResult(intent, 1);
It is working but after sending sms, its not returning back to my activity. If I put intent.putExtra("exit_on_sent", true); then sms body is showing empty in sms composer.
I want showing content in composer and it should return back to my activity after sending sms. Any way to implement this??
Try this