Hello
           i have a simple program that send an email when you press a 
button button i get an alert that  No application can perform this action .

                Intent emailIntent = new 
Intent(android.content.Intent.ACTION_SEND);
                emailIntent.setType("plain/text");  
                emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, 
new String[]{"ayras...@yahoo.com"});  
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, 
"Hello, MOTO!");  
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, 
"Hello, MOTO!");  

                startActivity(Intent.createChooser(emailIntent, "Send 
mail..."));// To use these Internet methods, AndroidManifest.xml must have 
the following permission:
                
Thanks so much for help

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to