ACTION SENDTO pour envoyer un e-mail
j'expérimente "cette action n'est pas actuellement supportée" condition d'erreur lors de l'exécution de l'extrait de code suivant dans Android 2.1. Qu'est-ce qui ne va pas avec le snippet?
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_SENDTO);
Uri uri = Uri.parse("mailto:myemail@gmail.com");
intent.setData(uri);
intent.putExtra("subject", "my subject");
intent.putExtra("body", "my message");
startActivity(intent);
}
3 réponses
si vous utilisez ACTION_SENDTO
, putExtra()
ne fonctionne pas pour ajouter le sujet et le texte à l'intention. Utiliser setData()
et l'outil Uri
ajouter sujet et texte.
cet exemple fonctionne pour moi:
// ACTION_SENDTO filters for email apps (discard bluetooth and others)
String uriText =
"mailto:youremail@gmail.com" +
"?subject=" + Uri.encode("some subject text here") +
"&body=" + Uri.encode("some text here");
Uri uri = Uri.parse(uriText);
Intent sendIntent = new Intent(Intent.ACTION_SENDTO);
sendIntent.setData(uri);
startActivity(Intent.createChooser(sendIntent, "Send email"));
en fait j'ai trouvé un moyen où les EXTRAs travaillent. C'est une combinaison d'une réponse que j'ai trouvé ici concernant ACTION_SENDTO
http://www.coderanch.com/t/520651/Android/Mobile/no-application-perform-action-when
et quelque chose pour HTML que j'ai trouvé ici:
comment envoyer un courriel HTML (mais la variante de comment utiliser ACTION_SENDTO dans ce post HTML ne fonctionnait pas pour moi - J'ai eu la "action non pris en charge", qui vous de voir)
// works with blank mailId - user will have to fill in To: field
String mailId="";
// or can work with pre-filled-in To: field
// String mailId="yourmail@gmail.com";
Intent emailIntent = new Intent(Intent.ACTION_SENDTO,
Uri.fromParts("mailto",mailId, null));
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject text here");
// you can use simple text like this
// emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,"Body text here");
// or get fancy with HTML like this
emailIntent.putExtra(
Intent.EXTRA_TEXT,
Html.fromHtml(new StringBuilder()
.append("<p><b>Some Content</b></p>")
.append("<a>http://www.google.com</a>")
.append("<small><p>More content</p></small>")
.toString())
);
startActivity(Intent.createChooser(emailIntent, "Send email..."));
Vous Pouvez Essayer Celui-Ci
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto", emailID, null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT,
Subject);
emailIntent.putExtra(Intent.EXTRA_TEXT,
Text);
startActivity(Intent.createChooser(emailIntent, Choosertitle);
Ça marche Pour moi