我正在尝试将html放入TextView中。一切都很完美,这是我的代码。
String htmlTxt = "<p>Hellllo</p>"; // the html is form an API
Spanned html = Html.fromHtml(htmlTxt);
myTextView.setText(html);
这将我的TextView设置为正确的html。但我的问题是,在html中有一个
标签,进入TextView的结果文本末尾有一个“\ n”,因此它将我的TextView的高度推高到应有的高度。 / p>
由于它是一个Spanned变量,我不能应用正则表达式替换来删除“\ n”,如果我要将它转换为字符串,然后应用正则表达式,我失去了使html锚点正常工作的功能
有没有人知道从“跨越”变量中删除结束换行符的任何解决方案?
答案 0 :(得分:49)
很好的答案@Christine。我今天下午编写了一个类似的函数来删除CharSequence中的尾部空格:
/** Trims trailing whitespace. Removes any of these characters:
* 0009, HORIZONTAL TABULATION
* 000A, LINE FEED
* 000B, VERTICAL TABULATION
* 000C, FORM FEED
* 000D, CARRIAGE RETURN
* 001C, FILE SEPARATOR
* 001D, GROUP SEPARATOR
* 001E, RECORD SEPARATOR
* 001F, UNIT SEPARATOR
* @return "" if source is null, otherwise string with all trailing whitespace removed
*/
public static CharSequence trimTrailingWhitespace(CharSequence source) {
if(source == null)
return "";
int i = source.length();
// loop back to the first non-whitespace character
while(--i >= 0 && Character.isWhitespace(source.charAt(i))) {
}
return source.subSequence(0, i+1);
}
答案 1 :(得分:19)
spannable是一个CharSequence,你可以操作它。
这有效:
myTextView.setText(noTrailingwhiteLines(html)); private CharSequence noTrailingwhiteLines(CharSequence text) { while (text.charAt(text.length() - 1) == '\n') { text = text.subSequence(0, text.length() - 1); } return text; }
答案 2 :(得分:6)
你可以试试这个:
Spanned htmlDescription = Html.fromHtml(textWithHtml);
String descriptionWithOutExtraSpace = new String(htmlDescription.toString()).trim();
textView.setText(htmlDescription.subSequence(0, descriptionWithOutExtraSpace.length()));
答案 3 :(得分:2)
你可以使用这条线......完全有效;)
我知道你的问题已经解决了,但也许有人觉得这个问题很有用。
try{
string= replceLast(string,"<p dir=\"ltr\">", "");
string=replceLast(string,"</p>", "");
}catch (Exception e) {}
这里是replaceLast ......
public String replceLast(String yourString, String frist,String second)
{
StringBuilder b = new StringBuilder(yourString);
b.replace(yourString.lastIndexOf(frist), yourString.lastIndexOf(frist)+frist.length(),second );
return b.toString();
}