标签: android android-layout
我在android.widget.TextView中设置推文,并且&最终格式化为
&
我应该如何设置格式,以便特殊字符如&显示正确吗?
答案 0 :(得分:4)
使用Html.fromHtml():
Html.fromHtml()
text.setText(Html.fromHtml("&"));