web-dev-qa-db-ja.com

Html.fromHtml()の後に余分な改行を削除します

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の高さが本来よりも高くなります。

Spanned変数であるため、「\ n」を削除するために正規表現置換を適用できません。それを文字列に変換してから正規表現を適用すると、htmlアンカーを正しく機能させる機能が失われます。

「スパン」変数から終了改行を削除するための解決策を知っている人はいますか?

36
AlexCheuk

いい答え@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);
}
52
Lorne Laliberte

スパナブルは、操作可能なCharSequenceです。

これは機能します:

 myTextView.setText(noTrailingwhiteLines(html)); 
 
 private CharSequence noTrailingwhiteLines(CharSequence text){
 
 while(text.charAt(text .length()-1)== '\ n'){
 text = text.subSequence(0、text.length()-1); 
} 
テキストを返す; 
} 
20
Christine

あなたはこれを試すことができます:

Spanned htmlDescription = Html.fromHtml(textWithHtml);
String descriptionWithOutExtraSpace = new String(htmlDescription.toString()).trim();

textView.setText(htmlDescription.subSequence(0, descriptionWithOutExtraSpace.length()));
8
Juan Ocampo

あなたはこの行を使うことができます...完全に機能します;)

私はあなたの問題が解決したことを知っていますが、多分誰かがこれが役に立つと思うでしょう。

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();
}
2
Hamid Qasemy