设置ListPreference的默认值

时间:2011-05-27 15:53:15

标签: android

如何设置ListPreference的默认值?

对于我使用的EditTextPreference

editor.putString("name","defaultvalue");

但这在ListPreference中不起作用。

我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

从xml:

执行
android:defaultValue

或:

onSetInitialValue(boolean restoreValue, Object defaultValue)
// Implement this to set the initial value of the Preference.