如何以编程方式设置评级栏样式?

发布于 2024-08-25 05:59:23 字数 55 浏览 5 评论 0原文

我没有看到任何类似于RatingBar 类的setStyle 的方法。如何从代码中设置评分样式?

I don't see any method like setStyle for class RatingBar. How can I set the rating style from code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怪异←思 2024-09-01 05:59:23

这对我有用(来源):

RatingBar rating =
  new RatingBar(context, null, android.R.attr.ratingBarStyleSmall);

This works for me (source):

RatingBar rating =
  new RatingBar(context, null, android.R.attr.ratingBarStyleSmall);
攒一口袋星星 2024-09-01 05:59:23

你需要在xml文件中设置它!如果您想在运行时更改它,您可以有两个不同的 View-s (rb) 并在程序中切换它们(从布局中添加/删除)或使用 rb1.setVisibility(View.VISIBLE) 和 rb2.setVisibility(View .消失);

<RatingBar 
    android:layout_height="wrap_content" android:layout_width="wrap_content"
    android:layout_alignParentRight="true" android:id="@+id/rb1"
    style="?android:attr/ratingBarStyleSmall"
    android:clickable="false" android:numStars="5">
</RatingBar>

You need to set it in xml file! If you like to change it on the run, you can have two different View-s (rb) and switch them in the program (add/remove from layout) or use rb1.setVisibility(View.VISIBLE) and rb2.setVisibility(View.GONE);

<RatingBar 
    android:layout_height="wrap_content" android:layout_width="wrap_content"
    android:layout_alignParentRight="true" android:id="@+id/rb1"
    style="?android:attr/ratingBarStyleSmall"
    android:clickable="false" android:numStars="5">
</RatingBar>
无声情话 2024-09-01 05:59:23

如果您以编程方式创建RatingBar,如下所示

RatingBar rating = new RatingBar(context, null, android.R.attr. ratingBarStyleSmall);

那么不要添加

rating.setIsIndicator (false);

否则触摸将无法在RatingBar 上运行。

如果您想要稍大的星星,则使用 android.R.attr. ratingBarStyleIndicator

If you are programmatically creating the RatingBar as follows the

RatingBar rating = new RatingBar(context, null, android.R.attr.ratingBarStyleSmall);

then don't for get to add

rating.setIsIndicator(false);

else the touch will not work on RatingBar.

The android.R.attr.ratingBarStyleSmall gives you very small stars if you want to have a slightly bigger stars use android.R.attr.ratingBarStyleIndicator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文