I have a SeekBarPreference in an XML file which displays (and the slider works), but after I click the OK button, the value just seems to disappear.
This is my XML file...
<?xml version="1.0" encoding="UTF-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<SeekBarPreference android:key="NOTE_MINIMUM"
android:summary="Set the lowest note in the playback sound"
android:max="125"
android:title="Lowest note"
android:persistent="true"
android:defaultValue="25" />
<CheckBoxPreference android:key="COLOR_CODING"
android:title="Show playback progress bar"
android:summary="string/color_coding_summary"
android:defaultValue="true" />
</PreferenceScreen>
I can get the value of the COLOR_CODING field in my code, but not the NOTE_MINIMUM field, which comes back as an unknown field using prefs.getInt("NOTE_MINIMUM", -11);
But I think the problem is in the preferences dialog. When I check the COLOR_CODING box and close then open the PreferencesScreen, it's state persists. When I move the slider on the NOTE_MINIMUM dialog (and click OK), doing a close-reopen of the app shows the slider as it was when the app initialised, with the slider at beginning of its track.
Could anyone please help me with this problem.