Android SeekBar 滑块被横条覆盖解决方式
如图问题:

原因是启用了style="@style/Widget.AppCompat.SeekBar.Discrete"
去掉即可.

<SeekBar
android:id="@+id/seekBarGeneralLevel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="3"
style="@style/Widget.AppCompat.SeekBar.Discrete"
android:max="100"
android:min="0"
android:progressBackgroundTint="@color/white"
android:splitTrack="false"
android:progress="3" />
<SeekBar
android:id="@+id/seekBarGeneralLevel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="3"
android:max="100"
android:min="0"
android:progressBackgroundTint="@color/white"
android:splitTrack="false"
android:progress="3" />
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果