Email Intent not showing the chooser

前端 未结 2 1225
执笔经年
执笔经年 2020-12-20 06:54

I\'m using the following to initiate the sending of an email:

Intent i = new Intent(Intent.ACTION_SEND);
i.setType(\"message/rfc882\"); 
i.putExtra(Intent.EX         


        
2条回答
  •  庸人自扰
    2020-12-20 07:09

    It might not respond to message/rfc882 Intents. Try text/plain instead, if you can, as I'm pretty sure that works.

提交回复
热议问题