<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:stepSize="0.1"
android:isIndicator="true"
android:rating="3.1"
/>
If I give rating from 3.1 to 3.5,then rating showing is 3.5 only.
I need rating to be set in exact value(e.g: 3.1).
StepSize is also set to 0.1.
Please anyone help me in this.
Thanks in Advance.