Getting the value of the currently selected item in a ListPreference is straightforward:
String selected = sharedPrefs.getString(
getString(R.string.list_preference_array),
"default string"
);
But now I need to get the key of the currently selected item, instead. Is this possible?
To clarify, a typical ListPreference definition in the XML file has the following components:
<ListPreference
android:key="@string/list_preference_array"
android:title="Title of ENTIRE list (not seen by user?)"
android:summary="this is what the user sees in small fonts"
android:defaultValue="just in case"
android:entries="@array/user_friendly_labels"
android:entryValues="@array/code_meaningful_strings"
android:dialogTitle="User Prompt(big font)"
android:showDefault="true"
android:showSilent="true"
/>
What sharedPrefs.getString() returns is the current selection from android:entryValues. What I am interested in getting is the current selection from android:entries. I mistakenly called it "key" but really it is a "corresponding label", which must be different than actual content.
getString(R.string.select_string)is the key ("name") of the entire ListPreference array, not the selection. – uTubeFan Aug 31 '11 at 18:06android:entries=for then? The returned string is the selection fromandroid:entryValues=but I need to get the selected entry (I may have mistakenly called it "key" for lack of a better name). – uTubeFan Aug 31 '11 at 18:33android:entriesis the text that the user will see when the list pops up, whileandroid:entryValuesis the value that will be returned to you after they click the entry. You shouldn't need theandroid:entriesvalue for anything in your code. If you do need it, then you should set theentriesandentryValuesto be the same thing. – John Leehey Aug 31 '11 at 18:36