How can I set the star color of the ratingbar?

后端 未结 10 1664
夕颜
夕颜 2021-02-12 19:54

How can I set the star color of the ratingbar? I want yellow stars.

10条回答
  •  一整个雨季
    2021-02-12 20:18

    I've found that just setting the progressTint is not a complete solution. It will change the color of the star but not on partial star fills if your stepSize is less than 1. In my experience you also need to set the secondaryProgressTint in order to stop the default star tint from rearing its ugly head. Here is my code:

    android:progressTint="@color/accent"
    android:secondaryProgressTint="@android:color/transparent"
    

    Hope this helps someone in my situation.

提交回复
热议问题