标签: android
如何向我的TextView插入ascii箭头的值?
例如:
我发现箭头向下的ascii = ▲
▲
myText.setText(▲);
但它不起作用。
答案 0 :(得分:4)
尝试
myText.setText(Html.fromHtml("▲"));