web-dev-qa-db-ja.com

Gmail経由でメールを送信

私はメールを送信するための火災の意図のコードを持っています

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL,
                new String[] { to });
i.putExtra(Intent.EXTRA_SUBJECT, subject);
i.putExtra(Intent.EXTRA_TEXT, msg);
try {
    startActivity(Intent.createChooser(i, "Send mail..."));
} catch (Android.content.ActivityNotFoundException ex) {
    Toast.makeText(Start.this,
                    "There are no email clients installed.",
                    Toast.LENGTH_SHORT).show();
}

しかし、このインテントが実行されると、SMSアプリ、Gmailアプリ、Facebookアプリなどの多くのアイテムがリストに表示されます。

これをフィルタリングしてGmailアプリのみ(またはおそらくメールアプリのみ)を有効にするにはどうすればよいですか?

26
Lukap

_Android.content.Intent.ACTION_SENDTO_(new Intent(Intent.ACTION_SENDTO);)を使用して、Facebookや他のアプリを使用せずに、電子メールクライアントのリストのみを取得します。メールクライアントだけ。

メールアプリに直接アクセスすることはお勧めしません。ユーザーが自分のお気に入りのメールアプリを選択できるようにします。 彼を拘束しないでください。

ACTION_SENDTOを使用する場合、putExtraはインテントに件名とテキストを追加するようには機能しません。 Uriを使用して件名と本文のテキストを追加します。

_Intent send = new Intent(Intent.ACTION_SENDTO);
String uriText = "mailto:" + Uri.encode("[email protected]") + 
          "?subject=" + Uri.encode("the subject") + 
          "&body=" + Uri.encode("the body of the message");
Uri uri = Uri.parse(uriText);

send.setData(uri);
startActivity(Intent.createChooser(send, "Send mail..."));
_
81
Igor Popov

受け入れられた答えは、4.1.2では機能しません。これはすべてのプラットフォームで機能するはずです。

Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
            "mailto","[email protected]", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
startActivity(Intent.createChooser(emailIntent, "Send email..."));

お役に立てれば。

21
thanhbinh84

Igor Popovの答えは100%正解ですが、フォールバックオプションが必要な場合は、次の方法を使用します。

public static Intent createEmailIntent(final String toEmail, 
                                       final String subject, 
                                       final String message)
{
    Intent sendTo = new Intent(Intent.ACTION_SENDTO);
    String uriText = "mailto:" + Uri.encode(toEmail) +
            "?subject=" + Uri.encode(subject) +
            "&body=" + Uri.encode(message);
    Uri uri = Uri.parse(uriText);
    sendTo.setData(uri);

    List<ResolveInfo> resolveInfos = 
        getPackageManager().queryIntentActivities(sendTo, 0);

    // Emulators may not like this check...
    if (!resolveInfos.isEmpty())
    {
        return sendTo;
    }

    // Nothing resolves send to, so fallback to send...
    Intent send = new Intent(Intent.ACTION_SEND);

    send.setType("text/plain");
    send.putExtra(Intent.EXTRA_EMAIL,
               new String[] { toEmail });
    send.putExtra(Intent.EXTRA_SUBJECT, subject);
    send.putExtra(Intent.EXTRA_TEXT, message);

    return Intent.createChooser(send, "Your Title Here");
}
13
xbakesx

これは、Android公式ドキュメントから引用されています。Android 4.4でテストしましたが、完全に機能します。他の例は https:/を参照してください。 /developer.Android.com/guide/components/intents-common.html#Email

  public void composeEmail(String[] addresses, String subject) {
        Intent intent = new Intent(Intent.ACTION_SENDTO);
        intent.setData(Uri.parse("mailto:")); // only email apps should handle this
        intent.putExtra(Intent.EXTRA_EMAIL, addresses);
        intent.putExtra(Intent.EXTRA_SUBJECT, subject);
        if (intent.resolveActivity(getPackageManager()) != null) {
            startActivity(intent);
        }
    }
7
marcwjj

交換する

i.setType("text/plain");

// need this to prompts email client only
i.setType("message/rfc822");
6
Andrew Podkin