Search code examples
javaandroidseekbarandroid-seekbarseekbar-thumb

How to remove bubble around Thumb in Android SeekBar?


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


Solution

  • 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"/>