android项目中引用资源文件夹的问题
我正在 eclipse ADT 插件中开发 android 项目。我从 github.com 下载一个开源项目(k9 电子邮件客户端)。然后我将 android 2.2.jar 文件添加到项目的引用库文件夹中,但我仍然面临语法问题,例如...
identity.setSignature(context.getString(R.string.default_signature)); Identity.setDescription(context.getString(R.string.default_identity_description));
每当我引用资源文件夹时,它都会显示错误......所以请帮助我。
i am developing android project in eclipse ADT plugin.i download one open source project(k9 email client) from github.com. then i add android 2.2.jar file to referenced library folder of project but still i face problem with syntax like...
identity.setSignature(context.getString(R.string.default_signature)); identity.setDescription(context.getString(R.string.default_identity_description));
whenever i reference the resource folder it shows me error..so please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要将 strings.xml 从values-LANGUAGE之一复制到res或values文件夹
looks like you need to copy strings.xml from one of values-LANGUAGE to either res or values folder