Android Html.fromHtml函数会自动将不需要的文本转换为超链接。
这是我的代码:
String htmlContent= "corners of nail.It has to";
textViewContent.setTextHtml.fromHtml(htmlContent));
textViewContent.setText(comment.getContent());
在上面的代码中,Html.fromHtml将“nails.It”视为链接并将其转换为超链接。
我能想到的解决方案之一就是在满座之后放置空间。 有什么好的解决方案吗?
答案 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());
希望它有所帮助。