I'm trying to style a discrete seekbar like the Focused Seekbar showed in the Material design website and I can't figure out how add the tickmark over the bar that shows the selected value
Material Design discrete sliders
I have a seekbar with 100 positions and this is my current xml code:
<SeekBar
android:id="@+id/seekBar"
style="@style/Widget.AppCompat.SeekBar.Discrete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/mod_quantity_text"
android:clickable="true"
android:max="100"
android:progress="1" />
Thanks for help