Android has no such a view. But you can create custom components based on your need. For your particular case, this one should be fine. For more complex scenario, you can refer this one on github.
I have this SeekBar:
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="26dp"
android:id="@+id/seekbar"
android:visibility="gone"
android:maxHeight="3dp"/>
I have tried to change this SeekBar thickness using …
I want to create a seek bar totally programmatically. All formatting is to be done from code itself. I cant even use a drawable from xml files.
Everything is working fine except the drawable for seek bar line. I can …
I have a SeekBar in a RelativeLayout whose width is equal to the screen width.
I applied layout_width="match_parent" to the SeekBar but it seems to keep some empty space on both sides of the SeekBar to accommodate …