Discrete Seekbar
I am trying to create a discrete seek bar for an Android app. I know I can set max and min values for a SeekBar (my ideal solution would be the Click example below) but I want the
Solution 1:
Check this link If you want to implement discrete seekbar with number of gaps without using third party library then use style property of seekbar.
<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" />
Post a Comment for "Discrete Seekbar"