문제
RatingBar
android:numStars를 사용해서 별 개수를 줄이고 싶었지만 별이 줄지 않았다.
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numStars="5"
android:rating="3.0"
android:stepSize="0.5"
android:max="5"
/>
원인을 검색해보니
numStars는 문제가 아니고
LinearLayout과 RatingBar width속성에 match_parent를 준게 문제였다.
부모 길이랑 맞추겠다고 numStars속성을 무시하고 별 숫자를 늘려 길이를 맞춘 것이다.
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:rating="3.0"
android:stepSize="0.5"
android:max="5"
/>
android:layout_width="wrap_content"
본인이 필요한 길이만큼만 쓰라고 했더니
별 다섯개가 잘 출력된다
참고
http://stackoverflow.com/questions/3858600/how-to-make-ratingbar-to-show-five-stars
https://developer.android.com/reference/android/widget/RatingBar.html