mardi 26 mai 2015

Android send mail not focus on the email's body automatically

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 :enter image description here

Aucun commentaire:

Enregistrer un commentaire