How I can programmatically get the default value of a ListPreference
as it have defined in the XML?
Here is the snippet of my ListPreference
:
<ListPreference
android:defaultValue="60"
android:entries="@array/interval_entries"
android:entryValues="@array/interval_values"
android:key="interval"
android:summary="@string/interval_summary"
android:title="@string/interval_title" />
I have been through the docs but I have not found a way to get this. Maybe I have overlooked it.
For PreferenceActivity (deprecated with Fragment), try:
Where my_key is the key value assigned to this ListPreference. Note: This value is defined in
strings.xml
. If you have hard-coded your key with a literal string, then substitute my_key with whichever string you've given for theandroid:key
tag. So, in your case, the codes will be: