I use the following code to start the SMS application:

Intent smsIntent=new Intent(Intent.ACTION_SENDTO,
Uri.parse("smsto:"));
smsIntent.putExtra("sms_body", "Message Body");
startActivity(smsIntent);

 It works fine if user selects default "Messaging" application. But if
user selects GV the message body text is not populated.

I have searched all the forums I know off and tried lot of things.
Nothing worked for me. I don't have any filters or permission in
Manifest file specific for SMS.  Am I missing something here? Does GV
need a special handing that it can’t be treated as same as default
“Messaging” app?

If I can't fix it, I would prefer to remove the GV from choices
offered to users. How can I start the default messaging app with body
text filled in, without offering any choices to user?

Please help or provider any direction for debug.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to