超链接不起作用Android OS 5及以上



在我的应用程序中通过意图打开gmail。我添加了超链接意图额外的文本,它无法正常工作Android OS 5及以上,但正常工作的OS 4.3

请建议我有什么问题。请参考下面的代码。

注意:直接链接[https://www.google.co.in/]正常工作所有Android OS。

代码:

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/html");
sharingIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("<a href=https://www.google.co.in/>Google</a>");
startActivity(Intent.createChooser(sharingIntent,"Share using"));

尝试以下代码

 Intent share = new Intent(android.content.Intent.ACTION_SEND);
    share.setType("text/plain");
    share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);

    share.putExtra(Intent.EXTRA_SUBJECT, "Google");
    share.putExtra(Intent.EXTRA_TEXT, "https://www.google.co.in");
    startActivity(Intent.createChooser(share, "Share link!"));

相关内容

  • 没有找到相关文章

最新更新