如何去除 Android SeekBar 中 Thumb 周围的气泡?

How to remove bubble around Thumb in Android SeekBar?

我的 SeekBar 有点问题。有人知道吗,我怎样才能去除 Android SeekBar 中 Thumb 周围的浅蓝色气泡?

只需将 android:background="@android:color/transparent" 添加到您的 Seekbar

<SeekBar
    android:id="@+id/seekbar"
    android:background="@android:color/transparent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>