Android发送mail的源码
作者:互联网
把做工程过程中常用的内容段记录起来,如下内容段是关于Android发送mail的的内容,应该对小伙伴们有用。
mime = “img/jpg”;
shareIntent.setDataAndType(Uri.fromFile(fd), mime);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd));
shareIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
shareIntent.putExtra(Intent.EXTRA_TEXT, body);
标签:EXTRA,shareIntent,putExtra,源码,Intent,mail,Android 来源: https://www.cnblogs.com/wezah05/p/15367816.html