Only Email apps to resolve an Intent

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

    You can also use this. It's more efficient

    Intent mailIntent = new Intent(Intent.ACTION_SEND);
    
      String mailTo[] = new String[] { "MAIL_TO_1", "MAIL_TO_2" };
      mailIntent.putExtra(Intent.EXTRA_EMAIL, mailTo);
      mailIntent.putExtra(Intent.EXTRA_SUBJECT, "Your subject");
      mailIntent.putExtra(Intent.EXTRA_TEXT, "MailsBody");
      mailIntent.setType("plain/text");
    
      startActivity(Intent.createChooser(mailIntent, "only email client"));
    

    This code sample show only email client which are currently installed on your device

提交回复
热议问题