我正在开发一个应用程序来发送带有 HTML 数据作为电子邮件主题的电子邮件。HTML 中包含一个表格标记。但是当我收到邮件时,它看起来不像一张桌子。这里有什么问题?我使用的代码是
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/plain");
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "" });
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Medicine Details");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
Html.fromHtml(htmldata));
startActivity(Intent.createChooser(emailIntent, "Email to Friend"));