Nuke Olaf - Log Store

[Android] 안드로이드 - 별점 기능 구현하기 RatingBar 본문

Android

[Android] 안드로이드 - 별점 기능 구현하기 RatingBar

NukeOlaf 2020. 4. 10. 04:08

영화 별점을 보여줄 수 있는 별점 view 를 구현하고 싶어서 찾아보니 Rating Bar 라는게 있다고 함.

근데 크기를 내가 원하는대로 조절 못함.

RatingBar의 Style은 총 3가지로 크기가 가장 큰 순으로 RatingBar -> Inficator -> Small 3가지만 사용 가능

<androidx.appcompat.widget.AppCompatRatingBar
    android:id="@+id/movie_rating"
    style="@style/Widget.AppCompat.RatingBar.Indicator"
    android:layout_width="0dp"
    android:layout_height="wrap_content" />

 

참고 사이트 >>>

https://developer.android.com/reference/android/widget/RatingBar

https://lktprogrammer.tistory.com/180

Comments