我有带ul,li和样式标签的String。我正在尝试在textview中以HTML格式显示它们。
字符串
<style type='text/css'>
ul
{
list-style-type: circle;
font-size: 16px;
}
<div style='font-family: Montserrat;line-height: 30px; text-align: left; color: #383838;'>
<ul>
<li>
Hello Everyone <span style='font-weight: 600; color: #b49fe1;'>Good Morning</span> How are You ?.</br>
</li>
<li>
Good morning <span style='color: #b49fe1;font-weight: 600;'>Have a nice day</span>.</br>
</li>
</ul>
textView.setText(Html.fromHtml(myHtmlText));
但是textview显示纯文本。
某种程度上,我如何通过使用this来转换ul和li标签,但看起来却不像我想要的那样。
有人知道如何在textview中使用style,ul和li标签吗?
答案 0 :(得分:0)
您正在使用CSS,但android不支持CSS。您可以改用webview。
android支持以下标记。有关更多详细信息,请查看here
br
p
div
em
b
strong
cite
dfn
i
big
small
font
blockquote
tt
monospace
a
u
sup
sub