The following lines should open the sms dialog in order to send a sms. On Api 19, the body is transmitted to the dialog, but on Lollipop, it remains blank.
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setType("vnd.android-dir/mms-sms");
sendIntent.putExtra("sms_body", bodySms);
context.startActivity(sendIntent);
Any idea ?
0 comments:
Post a Comment