如何在string.xml中为android创建@symbol

时间:2013-07-14 14:29:50

标签: android string android-layout

我想在我的Android应用程序中创建@sancorporation。我在string.xml中写过字符串,例如“<”string name =“cor_name”> sancorporation“<”/ string>,但我需要这样的东西“<”string name =“cor_name”> @sancorporation “<”/串取代。如何在android中使用特殊符号?

2 个答案:

答案 0 :(得分:2)

使用@ symble的ascii值是0040所以试试吧

for @sancorporation

          <string name="mytest">&#64;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>