There are two ways you can do this.
You have to style the RatingBar with either ratingBarStyleSmall or a custom style inheriting from Widget.Material.RatingBar.Small (assuming you're using Material Design in your app).Option 1:
Option 2:<RatingBarandroid:id="@+id/ratingBar"style="?android:attr/ratingBarStyleSmall"... />
// styles.xml<style name="customRatingBar" parentparent="android:style/Widget.Material.RatingBar.Small">... // Additional customizations</style>// layout.xml<RatingBarandroid:id="@+id/ratingBar"style="@style/customRatingBar"... />
No comments:
Post a Comment