我正在尝试在我的Android应用程序中使用@sancorporation。我已经在string.xml中编写了字符串,例如“ sancorporation” ,但是我需要类似这样的东西” @ sancorporation” 。如何在Android中使用特殊符号?

最佳答案

@符号的ascii值为0040,请尝试
对于@sancorporation

          <string name="mytest">&#64;sancorporation</string>

           or
           <string name="mytest">\u0040 sancorporation</string>

09-10 12:39