搜寻栏更改背景进度颜色

时间:2020-09-10 16:08:59

标签: android android-xml material-components-android android-seekbar android-slider

我希望整个进度栏为白色,但无法弄清楚该如何做。这就是我现在拥有的:

        <SeekBar
            android:id="@+id/seek_bar"
            android:layout_width="match_parent"
            android:paddingTop="10dp"
            android:thumbTint="@color/black"
            android:progressTint="@color/white"
            android:layout_height="wrap_content"
            android:layout_marginLeft="28dp"
            android:layout_marginRight="28dp"
            android:gravity="center_horizontal"
            />

这会导致这种情况-但我也希望搜索栏的右侧(其余进度)也为白色。

enter image description here

2 个答案:

答案 0 :(得分:1)

是您要找的东西吗?

enter image description here

#Data
df <- structure(list(Date = c("02/06/2019", "03/06/2019", "04/06/2019", 
"05/06/2019"), x = c(23L, 0L, 54L, 62L), y = c(45L, 72L, 102L, 
21L), Total = c(68L, 72L, 156L, 83L)), class = "data.frame", row.names = c(NA, 
-4L))

答案 1 :(得分:1)

您可以在材料组件库中使用Slider

<com.google.android.material.slider.Slider
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:trackColor="@color/white"
    app:thumbColor="@color/black"/>

enter image description here