我用这个在android中以编程方式发送电子邮件,但在Android 4.4.4中工作不好。有没有另一种方法来做到这一点?这是我的代码,谢谢。以编程方式发送邮件Android
Intent i = new Intent(Intent.ACTION_SEND);
//i.setType("text/plain"); //use this line for testing in the emulator
i.setType("message/rfc822") ; // use from live device
i.putExtra(Intent.EXTRA_SUBJECT,"-my app-");
i.putExtra(Intent.EXTRA_TEXT,"Hello");
startActivity(Intent.createChooser(i, "Select your mail app"));
请详细解释**,完全而准确地说**,“不好”的意思。 – CommonsWare 2014-12-13 15:07:13
对话框在屏幕上显示很大 – 2014-12-13 15:11:15