I am not able to compose a messge in Motorola XT925 device.
My code is as follows:
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.putExtra("sms_body", "My message");
smsIntent.setType("vnd.android-dir/mms-sms");
startActivity(smsIntent);
The above code runs on all devices and shows the output "My messgae".But on Motorola XT925,it shows blank text.Any help will be appreciated.
Thanks.