Only Email apps to resolve an Intent

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

    This works for me

    Intent intent = new Intent("android.intent.action.SENDTO", Uri.fromParts("mailto", "yourmail@gmail.com", null));
    intent.putExtra("android.intent.extra.SUBJECT", "Enter Subject Here");
    startActivity(Intent.createChooser(intent, "Select an email client")); 
    

提交回复
热议问题