본문 바로가기

나의 플랫폼/안드로이드

[Android] RatingBar touch disable

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

RatingBar를 그냥 사용하게 되면, 기본적으로 사용자가 터치시 Rating이 변경되어 버린다.


Rating을 변경 시키지 않고 유지할려면 아래와 같이 XML에 한줄만 추가해주면 된다.



<RatingBar
android:id="@+id/star_rate_"
android:layout_width="wrap_content"
android:layout_height="11dp"
android:isIndicator="true"/>

isIndicator를 true로 해주면 이 Rating은 그냥 보여주기 용으로 사용하겠다는 의미이다.


참고하세요.