Hi, I have 2 seekbars but only the second one updates when I use the slider. The first one allows me to move the slider but doesn't update the value. Here is my xml for the preferences layout.
>
<com.pavelsikun.seekbarpreference.SeekBarPreference
android:key="distance_from_target"
android:title="Distance from pin"
android:summary="Distance from location to start playing"
android:enabled="true"
android:defaultValue="10"
sample:msbp_minValue="10"
sample:msbp_maxValue="100"
sample:msbp_interval="10"
sample:msbp_measurementUnit="meters"
sample:msbp_dialogEnabled="false"/>
<com.pavelsikun.seekbarpreference.SeekBarPreference
android:key="poll_time"
android:title="Update GPS every"
android:summary="How often the GPS location is updated."
android:enabled="true"
android:defaultValue="20"
sample:msbp_minValue="20"
sample:msbp_maxValue="120"
sample:msbp_interval="10"
sample:msbp_measurementUnit="seconds"
sample:msbp_dialogEnabled="false"/>
Hi, I have 2 seekbars but only the second one updates when I use the slider. The first one allows me to move the slider but doesn't update the value. Here is my xml for the preferences layout.