我正在尝试使用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获取样式信息?
答案 0 :(得分:0)
你可能已经解决了,但没有。 handleTag
方法只会将标记名称转换为String
格式。