I want to change the color of the stars in rating bar based on user rating. I have tried the following code to change the change the color, but, rather than changing the color of only number of stars user selected, it is changing the color of all the stars.
if(rating.toInt()>=3){
val drawable = ratingBar.progressDrawable
DrawableCompat.setTint(drawable, Color.parseColor("#24875A"))
}
else{
val drawable = ratingBar.progressDrawable
DrawableCompat.setTint(drawable, Color.parseColor("#E20000"))
}