Add tick mark (✔) to string.xml

前端 未结 4 1978
一向
一向 2021-02-18 14:57

I am adding tick mark (✔) on a string message on the strings.xml, but I am getting a \"box\" instead of the tick mark when I am display that on the mobile device.<

4条回答
  •  我寻月下人不归
    2021-02-18 15:19

    Add unicode symbol "\u2713" to your string resource or you can use it from code as String object.

    String checkedMark = "\u2713";
    

提交回复
热议问题