Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在android资源中添加以“@”开头的字符串,但会出错:
未指定资源类型(在“str1”处,值为“@%s test”)。
我的字符串是:
<string name="str1" formatted="false">@%s test</string>
我必须如何编码“@”以将其放置在字符串资源中?
我很确定你可以逃脱它\@
\@
你应该@用\. 此外,您应该使用它们的位置引用参数:
@
\
<string name="str1" formatted="false">\@%1$s test</string>