Only Email apps to resolve an Intent

后端 未结 14 1570
执念已碎
执念已碎 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:17

    Try this

    String subject = "Feedback";
                String bodyText = "Enter text email";
                String mailto = "mailto:bob@example.org" +
                        "?cc=" + "" +
                        "&subject=" + Uri.encode(subject) +
                        "&body=" + Uri.encode(bodyText);
    
                Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
                emailIntent.setData(Uri.parse(mailto));
    
                try {
                    startActivity(emailIntent);
                } catch (ActivityNotFoundException e) {
                    //TODO: Handle case where no email app is available
                }
    

    Credit: https://medium.com/@cketti/android-sending-email-using-intents-3da63662c58f

提交回复
热议问题