Make custom RatingBar on Android that color will be change when RatingBar not clicked

140 views Asked by At

How can i implement RatingBar like this image. When RatingBar not clicked, the color will be change to red.

Rating Bar Image

This is my code

<RatingBar
    android:id="@+id/rate_star_location"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="?android:ratingBarStyleSmall"
    android:progressBackgroundTint="@color/grey"
    android:progressTint="#F9A825"
    android:isIndicator="false"
    android:rating="0"
    android:numStars="5"
    android:stepSize="1"/>
0

There are 0 answers