问题描述
我正在从网上的评价,并希望展现等级的RatingBar。
I am getting rating from the web and want to show the rating by ratingbar.
但我的问题是的RatingBar的评价是,当我滑动的RatingBar变化。
But my problem is rating of ratingbar is changing when I slide a ratingbar.
我要的评级是固定的,不会被用户的触摸改变。
I want the rating is fixed and do not changed by user's touch.
是任何人能够限制的RatingBar的控制权?我该怎么办呢?
is anybody able to limit control of ratingbar? How can I do that?
推荐答案
使用<$c$c>android:isIndicator="true"$c$c>在布局或<$c$c>setIsIndicator(boolean isIndicator) 从code与的RatingBar部件prevent用户交互。
Use android:isIndicator="true"
in your layout or setIsIndicator(boolean isIndicator)
from code to prevent user interaction with the RatingBar widget.
从文档报价:
安卓isIndicator - 无论这个等级吧应该只是一个指标(因此 用户不可更改)。
这篇关于是有可能使固定的RatingBar?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!