How can i implement RatingBar like this image. When RatingBar not clicked, the color will be change to red.
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"/>
