42

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アンカーが正しく機能する機能が失われます。

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

4

4 に答える 4

58

いい答え@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);
}
于 2012-04-17T08:12:34.360 に答える
22

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

これは機能します:

    myTextView.setText(noTrailingwhiteLines(html));

    プライベートCharSequencenoTrailingwhiteLines(CharSequence text){

        while(text.charAt(text.length()-1)=='\ n'){
            text = text.subSequence(0、text.length()-1);
        }
        テキストを返す;
    }
于 2012-04-02T10:15:42.130 に答える
10

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

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

textView.setText(htmlDescription.subSequence(0, descriptionWithOutExtraSpace.length()));
于 2016-03-03T21:32:15.957 に答える
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();
}
于 2014-07-03T12:03:02.960 に答える