Android Html.fromHtml函数自动将不需要的文本转换为超链接

时间:2016-02-17 10:40:07

标签: android html textview

Android Html.fromHtml函数会自动将不需要的文本转换为超链接。

这是我的代码:

 String htmlContent= "corners of nail.It has to";
 textViewContent.setTextHtml.fromHtml(htmlContent));
 textViewContent.setText(comment.getContent());

在上面的代码中,Html.fromHtml将“nails.It”视为链接并将其转换为超链接。

这是转换后的字符串的结果。 enter image description here

我能想到的解决方案之一就是在满座之后放置空间。 有什么好的解决方案吗?

2 个答案:

答案 0 :(得分:0)

在点和第二语句之间提供空格

     String htmlContent= "corners of nail. It has to";
     textViewContent.setTextHtml.fromHtml(htmlContent));
     textViewContent.setText(comment.getContent());

答案 1 :(得分:0)

你可以尝试这样的事情。

  textViewContent.setText( Html.fromHtml("<a href=\"YOURDESIREDLINK.COM\">YOUR DESIRED TEXT</a>"));
  textViewContent. setMovementMethod(LinkMovementMethod.getInstance());

希望它有所帮助。