今天大篇的粘贴arrays.xml中出现了这个问题:
Typeerror:
Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
对应的代码是:
<string name="template_user_agent">"%s/%s (Linux; Android)"</string>
解决办法是:
1 使用%%或\%,如:
>"%%s/%%s (Linux; Android)" 2 添加 formatted="false" 属性