2

I have a little problem with my SeekBar. Does someone know, how I can remove the light blue bubble around Thumb in Android SeekBar?

enter image description here

h3nn1n9
  • 69
  • 4

1 Answers1

3

Just add android:background="@android:color/transparent" to your Seekbar.

<SeekBar
    android:id="@+id/seekbar"
    android:background="@android:color/transparent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
Jakob
  • 1,858
  • 2
  • 15
  • 26