Android change Horizontal Progress bar color

2019-01-03 01:04发布

I have set Horizontal Progress bar.

I would like to change progress color of yellow.

<ProgressBar 
    android:id="@+id/progressbar" 
    android:layout_width="80dip" 
    android:layout_height="20dip"  
    android:focusable="false" 
    style="?android:attr/progressBarStyleHorizontal" />

The problem is, the progress color is different in different devices. So, I want it to fix the progress color.

13条回答
Summer. ? 凉城
2楼-- · 2019-01-03 01:45

This worked for me. for API level 21 & above

 android:indeterminateTint="@color/white"
查看更多
登录 后发表回答