Hello, I'm using a rating bar in android studio and I used the following in the layout:
<RatingBar
android:id="@+id/ratingBar"
style="?android:attr/ratingBarStyleSmall"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="#ffffff"
android:isIndicator="false"
android:numStars="5"
android:padding="5dp"
android:stepSize="1"
android:layout_width="wrap_content" />
It turns out that no way she gets 5 stars, she shows 4 and a little 5. Does anyone know how to fix this? Thank you.