I'm using Intent.ACTION_SEND to send an email. However, when I call the intent it is showing choices to send a message, send an email, and also to send via bluetooth. I want it to only show choices to send an email. How can I do this?
Intent.ACTION_SEND
intent
Intent email = new Intent(android.content.Intent.ACTION_SEND); email.setType("application/octet-stream");
EDIT: You could try setting the type to "message/rfc822" as well.
"message/rfc822"
try this...
2.1m questions
2.1m answers
60 comments
57.0k users