Android String资源文件中,空格、换行以及特殊字符如何表示
空格: 
例:<string name="test">test  test</string>
换行:\n
例:<string name="test">test \n test</string>
tab:\t
例:<string name="test">test \t test</string>
@ % 等特殊字符使用:
前面加转义符号“ \ ”即可
如果不想特殊字符生效,可以在<string 标签增加属性:formatted="false"
例: <string name="test" formatted="false"> % test % </string>
原文地址:https://blog.csdn.net/qq_39731011/article/details/142388841
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!