如何在TextView +中显示字符串html

时间:2019-05-02 10:33:02

标签: android

我有字符串html

<html>
<head>
</head>
 <style>
body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}
at{
color:red;
}
</style> <body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>
<at>at tag 3</at>

</body>
</html>

我尝试使用myTextView.setText(Html.fromHtml(myText))在TextView中显示它,但在我的TextView TextView显示样式中,它不显示style作为字符串内容。 如何在TextView中显示style标签? 非常感谢!

0 个答案:

没有答案