本文主要是介绍【Eclipse】Error: No resource found that matches the given name (at 'text' with value '@string/hello'),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这是因为在res/values/strings.xml中没有相应匹配的键值对。strings.xml文件如下:
<resources><string name="app_name">Suduku</string><string name="hello_world">Hello world!</string><string name="menu_settings">Settings</string><string name="title_activity_main">Main</string>
</resources>
增加键值<string name="hello">Hello!</string>就可以了。
这篇关于【Eclipse】Error: No resource found that matches the given name (at 'text' with value '@string/hello')的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!