在网上看到preferencefragment 的使用。就照着例子敲了一遍代码。
网址 :http://blog.csdn.net/wh_19910525/article/details/8505268
结果出错:
Error: No resource found that matches the given name (at 'entries' with value [email protected]/
entries_list_preference').
好像是没有在values里的strings.xml定义属性。。怎么定义啊?
strings.xml如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">MainAcitivity</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
</resources>
------解决方案--------------------
可以加上
<string-array
name="entries_list_preference" >
<item>1</item>
<item>2</item>
<item>3</item>
</string-array>