android中的ListPreferences

时间:2011-12-26 09:22:12

标签: android listpreference

我正在尝试填充ListPreferences

中的列表

xml代码

<ListPreference
 android:title="Countries"
 android:summary="Select the country"
 android:key="listPref"
 android:defaultValue="1"/>

并在ListPreferenceActivity中将String数组传递为:

ListPreference lp = (ListPreference)findPreference("listPref");
lp.setEntries(entries);
lp.setEntryValues(entryValues);

这不起作用,我收到此错误:

  

12-26 14:47:32.993:E / AndroidRuntime(1010):java.lang.IllegalStateException:ListPreference需要一个entries数组和一个entryValues数组。

0 个答案:

没有答案