I have question about send mail, how disable focus text with Intent.ACTION_SEND
Is it possible to:
1) Not focus on the email's body automatically
2) Focus on the top of the email
----> help me : Code send Mail :
String to = "aaaaa@gmail.com";
String subject = "bbbbbb";
//Intent action send
Intent email = new Intent(Intent.ACTION_SEND);
email.setType("text/plain");
email.putExtra(Intent.EXTRA_EMAIL,
new String[]{to});
email.putExtra(Intent.EXTRA_SUBJECT,
subject);
email.putExtra(Intent.EXTRA_TEXT, "Email message goes here");
//need this to prompts email client only
getActivity().startActivityForResult(Intent.createChooser(email,
"Send mail..."),
12345);
It image :
Aucun commentaire:
Enregistrer un commentaire