Your intent is missing the correct type.
Have a look here:
http://www.openintents.org/en/node/121
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "email text");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject");
sendIntent.setType("message/rfc822");
startActivity(Intent.createChooser(sendIntent, "Title:"));
Peli
www.openintents.org
On Nov 17, 11:12 am, Matthias <[EMAIL PROTECTED]> wrote:
> I have the same problem. Any ideas?
>
> On 24 Okt., 20:54, "Jake Maui" <[EMAIL PROTECTED]> wrote:
>
> > I'm trying to use the builtin email intent and so far I haven't found enough
> > information to use it correctly.
> > When I execute the following code, I get the message "No applications can
> > perform this action".
> > This happens on emulator as well as real hardware.
>
> > Can anyone tell me what piece is missing?
>
> > Thx
>
> > private OnSelectionHandler onEmailMenu = new OnSelectionHandler() {
> > public void handleSelection() {
> > Intent intent = new Intent(Intent.ACTION_SEND);
> > Bundle bundle=new Bundle();
> > bundle.putString(Intent.EXTRA_EMAIL , "[EMAIL PROTECTED]");
> > bundle.putString(Intent.EXTRA_TEXT , "This is a test");
>
> > startActivity(Intent.createChooser(intent, "Send Mail"));
> > }
> > };
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---