我想在我的strings.xml
文件中创建以下字符串数组:
<string-array name="an_array_columns">
<item>% Select percentage1</item>
<item>% Select percentage2</item>
</string-array>
这里的字符串是“% 选择百分比”。现在,当我在我的 strings.xml 中写这个时,我收到以下错误:
Multiple annotations found at this line:
- error: Multiple substitutions specified in non-positional format; did you mean to
add the formatted="false" attribute?
- error: Found tag </item> where </string-array> is expected
我知道我们可以更改&
为&
或'
,\'
但是我该怎么做百分号?