Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在我的 TextView 中插入 ascii 向下箭头的值?
例如:
我发现向下箭头的ascii =▲
▲
myText.setText(▲);
但它不起作用。
尝试
myText.setText(Html.fromHtml("▲"));