如图问题:

原因是启用了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" />