我有字符串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
标签?
非常感谢!