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.
我想用 ABC@gmail.com 之类的电子邮件语法对字符串资源进行硬编码。但是,eclipse 弹出一个错误,说不能包含“@”。
'@' 如何包含在字符串资源中。
谢谢。
试试这个:
在 strings.xml 中添加字符串:
<string name="email">xyz@gmail.com</string>
并尝试在活动中将其设置为:
textView.setText(R.string.email);