我想在我的Android应用程序中创建@sancorporation。我在string.xml中写过字符串,例如“<”string name =“cor_name”> sancorporation“<”/ string>,但我需要这样的东西“<”string name =“cor_name”> @sancorporation “<”/串取代。如何在android中使用特殊符号?
答案 0 :(得分:2)
使用@ symble的ascii值是0040所以试试吧
for @sancorporation
<string name="mytest">@sancorporation</string>
or
<string name="mytest">\u0040 sancorporation</string>
答案 1 :(得分:0)
也许这会有所帮助
<string name="specialChar"> "@" </string>
你也可以尝试这个
<string name="specialChar"> \@ </string>
修改强> 现在我注意到你想写@sanCorporation。
所以你可以在string.xml文件中使用它:
<string name="corp"> "@sanCorp" </string>