Only Email apps to resolve an Intent

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

    Following three lines of code is sufficient to finish your task, nothing EXTRAS needed. Hope it helps.

    Intent intent = new Intent(Intent.ACTION_SENDTO);
    intent.setData(Uri.parse("mailto:destination_gmail@gmail.com"));
    startActivity(Intent.createChooser(intent, "Send email using.."));
    

提交回复
热议问题