我尝试显示带有样式的HTML文本,但文本显示没有样式。
在我的代码中有两个数字,一个应该是红色,另一个应该是条带。在行动中,它们看起来都是简单的文字。
这是我的代码:
String str = "<span>  <span dir=\"rtl\" style=\"text-align:right;color:#ff0000;\"> 20.00</span> <span dir=\"rtl\" style=\"text-align:right;text-decoration: line-through;\">26.99 </span></span>";
Spanned spanned = Html.fromHtml(str);
txtView.setText(spanned);