我正在创建电子邮件意图并使用包含哈希标记的链接填充邮件:
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "http://en.wikipedia.org/wiki/Android_(operating_system)#Software_development");
我发送此邮件并在Android上重新打开后,默认邮件客户端只会链接到http://en.wikipedia.org/wiki/Android_(operating_system)
有没有办法解决这个问题?
答案 0 :(得分:1)
这是Android默认邮件的问题。使用gmail应用程序链接工作得很好!
答案 1 :(得分:0)
尝试以下方法。由于我的IDE中存在问题,我无法测试我的代码。
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("http://en.wikipedia.org/wiki/Android_(operating_system)#Software_development"));
由于 迪帕克