Only Email apps to resolve an Intent

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

    When I use intent android.content.Intent.ACTION_SENDTO doesn't work for me because it shows many apps, some apps are not email clients. I found this way and it works perfectly for me.

    Intent testIntent = new Intent(Intent.ACTION_VIEW);  
    Uri data = Uri.parse("mailto:?subject=" + "blah blah subject" + "&body=" + "blah blah body" + "&to=" + "sendme@me.com");  
    testIntent.setData(data);  
    startActivity(testIntent);
    

提交回复
热议问题