Only Email apps to resolve an Intent

后端 未结 14 1554
执念已碎
执念已碎 2020-12-03 06:30

I have a problem .. I want only email activities to resolve intent ACTION.SEND but beside email I get other apps as well (e.g TubeMate) even though I have set the mime type

14条回答
  •  既然无缘
    2020-12-03 07:13

     private void sendEmail(Connect connect) {
        Intent email = new Intent(Intent.ACTION_SENDTO);
        email.setData(Uri.parse("mailto:"));
        email.putExtra(Intent.EXTRA_EMAIL, new String[]{connect.getEmail()});
        email.putExtra(Intent.EXTRA_SUBJECT, "");
        email.putExtra(Intent.EXTRA_TEXT, "");
        try {
            startActivity(Intent.createChooser(email, getString(R.string.choose_email_client)));
        } catch (ActivityNotFoundException activityNotFoundException) {
            UIUtils.showShortSnackBar(fragmentConnectLayout, getString(R.string.no_email_client));
        }
    }
    

    Refer https://developer.android.com/guide/components/intents-common.html#Email

提交回复
热议问题