[android-developers] Re: Intent.Createchooser Does Not Work

2012-03-18 Thread JFS
Does anyone have further thoughts on this? After update to 2.3.6, createChooser does not work at all and mail intent works only when program stops, not immediately in response to button press. On Mar 13, 11:28 am, JFS j...@sheagermain.com wrote: Sorry, I used the wrong language.  The mail

[android-developers] Re: Intent.Createchooser Does Not Work

2012-03-13 Thread JFS
Well, I tried text/plain as well, with no effect. E-mail accounts include gmail and Outlook (they continue to work the same). Any additional options? On Mar 13, 7:27 am, Mark Murphy mmur...@commonsware.com wrote: After the upgrade, you no longer have any mail clients that support

Re: [android-developers] Re: Intent.Createchooser Does Not Work

2012-03-13 Thread Mark Murphy
Try dropping createChooser(), just invoking your ACTION_SEND Intent, and see what happens. Also, try using other apps that use ACTION_SEND. For example, the stock Android browser's Share Page will use an ACTION_SEND text/plain Intent. On Tue, Mar 13, 2012 at 9:25 AM, JFS j...@sheagermain.com

[android-developers] Re: Intent.Createchooser Does Not Work

2012-03-13 Thread JFS
When I drop createChooser and replace it with the emailintent (ACTION_SEND), nothing happens immediately. But when the service stops, I am then prompted with the expected set of e-mail accounts and can send the message. So this is on the right track, but it obviously undermines the usefulness of

Re: [android-developers] Re: Intent.Createchooser Does Not Work

2012-03-13 Thread Mark Murphy
On Tue, Mar 13, 2012 at 10:47 AM, JFS j...@sheagermain.com wrote: When I drop createChooser and replace it with the emailintent (ACTION_SEND), nothing happens immediately.  But when the service stops, I am then prompted with the expected set of e-mail accounts and can send the message. Why is

[android-developers] Re: Intent.Createchooser Does Not Work

2012-03-13 Thread JFS
Sorry, I used the wrong language. The mail intent works in response to a user button press. When the button is pressed, the entries are supposed to be mailed immediately. That is the way it previously worked. Now, when the button is pressed, the code (with createChooser and without) runs