I've added a RatingBar in a layout :
<RatingBar android:id="@+id/ratingbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:stepSize="1.0"
></RatingBar>
But the default style for the rating bar is too large.
I've trie to change it by adding the android style : style="?android:attr/ratingBarStyleSmall"
But the result is too small and it's impossible to set a rate with this property.
How could i do?