How can I set the star color of the ratingbar? I want yellow stars.
The simpliest way:
android:progressTint="@color/color"
Smooth and shiny.
This worked for me:
Drawable drawable = ratingBar.getProgressDrawable();
drawable.setColorFilter(Color.parseColor("#FFFDEC00"), PorterDuff.Mode.SRC_ATOP);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With