android html.fromhtml函数自动将不需要的文本转换为超链接。
这是我的代码:

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

在上面的代码中,html.fromhtml将“nails.it”视为链接并将其转换为超链接。
这是转换字符串的结果。
android - Android Html.fromHtml函数自动将不需要的文本转换为超链接-LMLPHP
我能想到的一个解决办法是,在完全停止后留出空间。
有什么好的解决办法吗?

最佳答案

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

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

09-28 01:21