Nuke Olaf - Log Store
[Android] 안드로이드 - 별점 기능 구현하기 RatingBar 본문
영화 별점을 보여줄 수 있는 별점 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
'Android' 카테고리의 다른 글
[Android] 안드로이드 - 리사이클러뷰 연구 및 사용법에 대한 고찰 (0) | 2020.04.10 |
---|---|
[Android] 안드로이드 - OkHttp Interceptors (0) | 2020.04.10 |
[Android] 안드로이드 - SearchView 검색창 만들기 (0) | 2020.04.10 |
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option (0) | 2020.04.08 |
[Android] 안드로이드 - 이용약관 동의 체크박스 알고리즘 만들기 (0) | 2020.03.31 |
Comments