*Issue:*
HTC Sense phones do not properly implement the ACTION_SEND intent.

*Impact:*
If you don't take this into consideration, your users will likely not be 
able to share anything via MMS/SMS from your application.

*Workaround:*
Anytime you plan on using the ACTION_SEND intent, be certain that you also 
populate the chooser with the HTC_ACTION_SEND as well.
This is really easy to do, simply use the below code snippet to handle it.

final Intent chooser = Intent.createChooser(messageIntent, pickerTitle);
chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { 
htcMessageIntent });

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

Reply via email to