Only Email apps to resolve an Intent

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

    Here's a code snippet that launches ONLY email apps.

    Intent intent = new Intent(Intent.ACTION_SENDTO);
    intent.setData(Uri.parse("mailto:example@example.com"));
    intent.putExtra(Intent.EXTRA_SUBJECT, "This is the subject"));
    intent.putExtra(Intent.EXTRA_TEXT, "Hi, how're you doing?"));
    
    if (intent.resolveActivity(getActivity().getPackageManager()) != null) {
        startActivity(intent);
    }
    

    I hope this helps.

提交回复
热议问题