How to make RatingBar to show five stars

前端 未结 18 563
栀梦
栀梦 2020-12-04 18:58

I am following the standard example of how to add a RatingBar. To control the number of stars I tried to use android:numStars=\"5\". The problem is

18条回答
  •  青春惊慌失措
    2020-12-04 19:06

    If you are using

    android:layout_width="match_parent"

    Use wrap_content and it will only show the set numStars :)

    android:layout_width="wrap_content"

提交回复
热议问题