Show in textview html with inline styles

∥☆過路亽.° 提交于 2019-11-28 04:08:27

问题


I need to show html with inline styles in my app. There are a lot of text that must be in different views so I can't use Webview(I tried to use a lot of Webviews but the app becomes very slow ).As I know TextView can show html but it can`t show html with inline styles. So, what should I do? Is there any way to show it or to generate only html with simple tags from html with inline styles?

So I need to show html like this:

<p style="text-align: center;"><span style="color: #ff0000; font-size: 36pt; font-family: 'comic sans ms', sans-serif;">Article Title</span></p>

But TextView can`t understand style.


回答1:


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.




回答2:


Only one way to implement this is to use a 3rd party libraries as alternative for Android Html.fromHtml () method like this, which supports a CSS attributes, so for example

<div style="font-weight:bold;">bold text</div>

become

<b>bold text</b>



来源:https://stackoverflow.com/questions/33691287/show-in-textview-html-with-inline-styles

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!