提问人:Slava 提问时间:10/6/2023 更新时间:10/6/2023 访问量:15
如何在Android中更改与进度条进度相关的颜色
How to change color related to progress of progress bar in Android
问:
如何更改与进度条进度相关的颜色? 我想让进度条的末尾更浓郁的红色。 例如,从蓝色到红色。
<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
}
答: 暂无答案
评论