add support for more html tags

closes #16
This commit is contained in:
sk
2022-11-30 00:36:42 +01:00
parent 4880c642fe
commit d8d0830631

View File

@@ -1,9 +1,12 @@
package org.joinmastodon.android.ui.text;
import android.graphics.Typeface;
import android.text.SpannableStringBuilder;
import android.text.Spanned;
import android.text.TextUtils;
import android.text.style.BulletSpan;
import android.text.style.StyleSpan;
import android.text.style.UnderlineSpan;
import android.widget.TextView;
import com.twitter.twittertext.Regex;
@@ -128,6 +131,9 @@ public class HtmlParser{
}
}
case "li" -> openSpans.add(new SpanInfo(new BulletSpan(V.dp(6)), ssb.length(), el));
case "em", "i" -> openSpans.add(new SpanInfo(new StyleSpan(Typeface.ITALIC), ssb.length(), el));
case "strong", "b" -> openSpans.add(new SpanInfo(new StyleSpan(Typeface.BOLD), ssb.length(), el));
case "u" -> openSpans.add(new SpanInfo(new UnderlineSpan(), ssb.length(), el));
}
}
}