Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
SeekBarPreference
Version used:
androidx.datastore:datastore-preferences:1.1.1
Devices/Android versions reproduced on:
Pixel 8 Android Version 14
To reproduce add a SeekBarPreference with bounds to a PreferenceScreen:
```xml
<SeekBarPreference
android:key="a"
app:min="1"
android:max="99"
/>
```
and to set the value outside of the bounds:
```kt
val preference = fragment.findPreference<SeekBarPreference>("a")!!
preference.value = 100
```