Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
I use the following code to start the SMS application:   

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

It works fine if user selects standard "Messaging" application. But if user selects GV the message body text is ignored.

I have also tried the following as suggested in some forums:

smsIntent.putExtra(Intent.EXTRA_TEXT, "Message Body");

I have searched all the forums I know of and tried lot of things. Nothing worked for me. Am I missing something here? Does GV need a special handing that it can’t be treated as regular “Messaging” app?

share|improve this question
Try smsto: instead of sms: and see if that helps. – CommonsWare Jan 10 '11 at 12:00
Changing "sms" to "smsto" didn't help. – Jas Jan 11 '11 at 6:19
Jas: did you ever get an answer to this problem? I'm running into the same issue and can't figure out any way to get the text to show up in the message body in GV. – Eric Dec 27 '11 at 23:36

1 Answer

Here are some thoughts that might point you in the right direction:

Hopefully one of these help you out...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.