I'm migrating from AppCompatSeekBar
to material.slider.Slider
Removing the thumb on the SeekBar was easy using splitTrack="false"
.
How can I achieve the same with the Slider?
I'm migrating from AppCompatSeekBar
to material.slider.Slider
Removing the thumb on the SeekBar was easy using splitTrack="false"
.
How can I achieve the same with the Slider?
You can use the attributes:
app:haloRadius
app:thumbRadius
To avoid the halo you can use
app:haloRadius
. Use10dp
as thethumbRadius
:You can also remove the thumb and the halo using the attribute
app:thumbRadius="0dp"