starting an SMS message intent (compose pre-populated text) is no longer working for new Droid RAZR ICS operating system. Are there other ways to accomplish this task?
I have tried both:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", smsBody);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
Also tried,
Uri.parse(uri);
The body of the text message is not pre-populating meanwhile it behaves correctly for all other devices and operating systems to my knowledge.