I just wanted to include a SeekBarPreference in my project with only 3 values (level of emergency : low-Medium-high)
This can easily be done on a classic SeekBar (see example below) but I don't get how I could inlude that is a Preference.
If I use this code, it will work in a SeekBar (not Preference) but in Preferences it will still display a SeekBar without the thick marks.
CODE:
<SeekBar
android:id="@+id/sb"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="10"
android:thumb="@drawable/ic_location"
android:theme="@style/Widget.AppCompat.SeekBar.Discrete" />
Any idea, or suggestion?
You need to use the support
SeekbarPreference
to customize thethumb
and all. You can pass in your own custom layout for your seek bar preference. please check the example from below.Your activity where you will add your preference fragment
You have to add a specific theme in your manifest for this activity
styles.xml
Your fragment where you load your preferences from xml
BlankFragment.java
And your preference file from xml res folder
Here you can see that the
android:layout
attribute takes a resource layout file where you can supply your own custom seekbar and a textview-which shows the selected value from seekbarmy_custom_seekbar.xml
Note that you have to use the exact same identifier for your custom SeekBar and TextView, otherwise it will throw a
NullPointerException