CSS in TextView Android

后端 未结 2 611
借酒劲吻你
借酒劲吻你 2020-12-19 16:25

I have a html string that I want to display in TextView. The html string has css inline style and also css in header. I would li

相关标签:
2条回答
  • 2020-12-19 16:36

    Android does not support CSS in TextView and has a limited Html markup support. Use WebView instead.

    0 讨论(0)
  • 2020-12-19 16:44

    Android native TextView doesn't support all HTML tags and features. It only does support a few tags and properties. So, in your case, there's a couple of options which you may want to consider.

    Use WebView to show rich texts. However, WebViews are too heavy and slow.

    Use 3rd party libraries that improve native TextView and support more HTML tags. For example: HTML-TextView.

    0 讨论(0)
提交回复
热议问题