我有一个 php 文件,其中包含这样的 html 标记
<h4>Standard Web Browser Components</h4>
<p>Let’s lay out a few components of the modern day web browser:</p>
<ul>
<li>Parsing (HTML, XML, CSS, JavaScript)</li>
<li>Layout</li>
<li>Text and graphics rendering</li>
<li>Image decoding</li>
<li>GPU interaction</li>
<li>Network access</li>
<li>Hardware acceleration</li>
</ul>
<header>
<h1 class="entry-title"><a href="/2012/chrome-canary-for-developers/">Chrome Canary for Developers</a></h1>
<p class="meta">
<time datetime="2012-11-02T08:16:00+04:00" pubdate data-updated="true">Nov 2<span>nd</span>, 2012</time>
</p>
</header>
我想在我的 Android 布局中解析它。我是这样做的
webtext.setText(Html.fromHtml(content));
但我失去了内容的风格和颜色。如何在不丢失样式的情况下在布局中显示。