I am writing a PreferenceActivity for my Android app. I have question about ListPreference.
How can I make aListPreference that does an action if the 1st, 2nd, or 3rd string is selected? The XML looks like this:
<ListPreference
android:defaultValue="1000"
android:dependency="perform_updates"
android:entries="@array/Select_Shoe_Country"
android:key="updates_interval"
android:summary="Select Shoe"
android:title="Example1" /> `