我的目标是打开带有图像的 html 文件(图像链接在 html 页面中可用)。
Intent shareIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:"));
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The Subject");
shareIntent.putExtra(Intent.EXTRA_TEXT,Html.fromHtml(new StringBuilder().append("<p><b>Some Content</b></p>").append("<small><p>More content</p></small>").append("<img src=\"http://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wiktionary_small.svg/350px-Wiktionary_small.svg.png\"/>").toString()));
startActivity(shareIntent);
我尝试但它不显示图像而是显示 obj。