如何设置ListPreference的默认值?
对于我使用的EditTextPreference
editor.putString("name","defaultvalue");
但这在ListPreference中不起作用。
我怎么能这样做?
答案 0 :(得分:3)
从xml:
执行android:defaultValue
或:
onSetInitialValue(boolean restoreValue, Object defaultValue)
// Implement this to set the initial value of the Preference.