我希望整个进度栏为白色,但无法弄清楚该如何做。这就是我现在拥有的:
<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"
/>
这会导致这种情况-但我也希望搜索栏的右侧(其余进度)也为白色。
答案 0 :(得分:1)
是您要找的东西吗?
#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)