
When i click between 2 & 3 star (highlighted by blue color), both are getting selected
XML code:-
<me.zhanghai.android.materialratingbar.MaterialRatingBar
android:id="@+id/feedbackRatingBar"
style="@style/customRatingBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminateTint="#FFCB07"
android:numStars="3"
android:progressTint="#FFCB07"
android:secondaryProgressTint="#00000000"
android:stepSize="0.01" />
Code:
feedbackRatingBar?.setOnRatingBarChangeListener { _, rating, fromUser ->
if(fromUser){
feedbackRatingBar?.rating = ceil(rating)
}
}