我正在尝试使用 TextView 显示 HTML。我的 HTML 包含一些 CSS 样式。这是我的 HTML 示例。
<p><strong>bold </strong><em> italic </em><span style="text-decoration: underline;">underlined</span> <span style="text-decoration: line-through;">striked</span><span style="font-family: symbol;"> custom font</span><span style="font-size: large;"> bigger </span></p>
<br/><p style="text-align: right;"><span style="font-size: x-small;">aligned to right</span></p>
<br/><p style="text-align: center;"><span style="font-size: x-small;">aligned to center</span></p>
<br/><p style="text-align: justify;"><span style="font-size: x-small;">this text is justifyed </span></p>
<br/><p><span style="font-size: x-small; color: #ff0000;">colored </span></p>
<br/><p><span style="font-size: xx-large; color: #ff0000;"><span style="font-size: x-small;">symbol </span>♣</span></p>
我可以使用 TagHandler 处理所有标签。但我无法获得有关样式的任何信息。是否可以使用 TagHandler 获取样式信息?