I have a preferences consisting of a checkbox and a spinner.
The spinner has a android:entryvalues attribute,
I need to know how to set when the checkbox value is true to change the entry values?
Preference.Xml
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Preferences"
android:key="first_category">
<ListPreference
android:key="news_feed"
android:title="Scout.org News Feeds"
android:summary="Please Select which news feed you would like to be received..."
android:defaultValue="1"
android:entries="@array/News_Feed_Title"
android:entryValues="@array/newsfeed"
android:dialogTitle="Scout.org News Feeds"
android:dialogIcon="@drawable/ic_rss"
/>
<CheckBoxPreference
android:key="french"
android:title="News Feed & Library Language"
android:summaryOff="@string/frenchblurb"
android:defaultValue="false"
android:summaryOn="French Enabled"
android:enabled="false"
/>
</PreferenceCategory>
</PreferenceScreen>