我想發送一些信息給特定的電子郵件ID不支持。我設置了地址並嘗試發送消息。它在Gmail應用中運行良好。但它在郵件應用程序中無法正常工作,特別是在Nexus 7(HTC One V)中背後的原因是什麼?機器人 - Mail應用程序中的Nexus 7
源代碼
Intent emailIntent = new Intent(android.content.Intent.ACTION_SENDTO);
emailIntent.setType("text/html");
emailIntent.setData(Uri.parse("mailto:[email protected]"));
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Price Check Guru Feedback");
startActivity(Intent.createChooser(emailIntent, "Email:"));
更新的代碼
意圖emailIntent =新意圖(android.content.Intent.ACTION_SENDTO); emailIntent.setType(「text/html」);
//set the To address and Subject
try
{
String strSubject = URLEncoder.encode("Price Check Guru Feedback","UTF-8");
//testing
emailIntent.setData(Uri.parse("mailto:[email protected]"+ "?subject=" + strSubject));
}
catch (UnsupportedEncodingException e)
{
e.printStackTrace();
}
startActivity(Intent.createChooser(emailIntent, "Email:"));
無法正常工作?你能告訴我們你得到的錯誤嗎? –
不能正常工作意味着我不能使用郵件應用程序收到任何消息,但使用Gmail應用它的正常工作 – naresh