Android开发: strings.xml文件中的错误

2014-11-24 10:12:17 · 作者: · 浏览: 0

编辑strings.xml的时候
在行http://code.dd.com/rr q=%rr.55
提示下面的错误
Multiple annotations found at this line:
- error: Multiple substitutions specified in non-positional format; did you mean to add
the formatted="false" attribute
- error: Unexpected end tag string


出现这个错误的原因主要是因为strings字串中包含百分号(%),



有几种方式解决
1.用两个百分号表示一个百分号即
http://code.dd.com/rr q=%%rr.55
2.用转义符表示
http://code.dd.com/rr q=\%rr.55
3.根据错误提示可知,如果字符串无需格式化,可在

http://code.dd.com/rr q=%rr.55