TextView不会显示<
符号。
我怎么能这样做呢?
答案 0 :(得分:2)
HTML编码
从android.text.TextUtils
尝试htmlEncode()TextUtils.htmlEncode("My String with <");
<强> HTMLDecoding 强>
解码HTML编码的字符串使用来自android.text.Html的fromHtml(htmlEncodedString)
Html.fromHtml(htmlEncodedString).toString();
<强> [编辑] 强> 您询问在从资源XML检索TextView后,您必须如何继续。你可以设置它的文字:
TextView t=(TextView)findViewById(R.id.textView);
t.setText(TextUtils.htmlEncode("My HTML encoded String with <"));
不要先忘记import android.text.TextUtils
!
答案 1 :(得分:1)
使用HTML实体<
。