显示箭头字符的纯文本而不是图标

时间:2016-05-29 12:12:05

标签: android textview

我有TextViewListPopupWindow ListPopupWindows中的每个列表项都是TextView。点击TextView后,系统会显示ListPopupWindow。 值为↓↑→←↘↙↗↖。但是,↘↙↗↖以某种方式替换为图标。有没有办法显示↘↙↗↖的纯文本而不是图标???

enter image description here

2 个答案:

答案 0 :(得分:0)

箭头角色为我工作后添加︎。所以,而不是

android:text="↖"

使用

android:text="↖︎"

之前/之后:

enter image description here enter image description here

基于this answer

  

附加用于强制文本的Unicode变体选择器字符,   VS15,︎。这会强制渲染前一个字符   作为文本而不是表情符号。

答案 1 :(得分:-1)

你可以使用iconify library,github是:https://github.com/JoanZapata/android-iconify

它可以用↓↑→←↘↙↗↖.

等图标替换文字

这是我的情况:

enter image description here