如何在Android中更改与进度条进度相关的颜色

How to change color related to progress of progress bar in Android

提问人:Slava 提问时间:10/6/2023 更新时间:10/6/2023 访问量:15

问:

如何更改与进度条进度相关的颜色? 我想让进度条的末尾更浓郁的红色。 例如,从蓝色到红色。

<ProgressBar
        android:id="@+id/storage_progress_bar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:max="100"
        android:progress="10"
        android:indeterminate="false"

thread {
   while (i < state) {
        i += 1
        Thread.sleep(100)
   }
   handler.post {
        storage_progress_bar.progress = i
   } 
Android 颜色 进度

评论

0赞 blackapps 10/6/2023
请开始显示您如何为进度条着色。

答: 暂无答案