如何在我的TextView中插入向下的ascii箭头值?

例如:

我发现向下箭头的ascii = &#x25B2

myText.setText(&#x25B2);

但这不起作用。

最佳答案

尝试

myText.setText(Html.fromHtml("&#x25B2"));

08-18 02:43