I have a little problem with my SeekBar. Does someone know, how I can remove the light blue bubble around Thumb in Android SeekBar?
Asked
Active
Viewed 418 times
1 Answers
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
-
maybe do color/transparent instead, so that way even if you use it in a darker theme, it would still blend in with the background – Nikos Hidalgo Nov 19 '18 at 16:43
-
@NikosHidalgo Thank you for the hint. I edited my answer. – Jakob Nov 19 '18 at 16:44