减小 Android 2.1 中评级栏的大小

发布于 2024-09-24 06:16:47 字数 144 浏览 4 评论 0原文

我目前正在为福特公司开发一个移动应用程序项目,并且我是 Java Android 的新手。

我只是想知道,有什么方法可以减小 Android 2.1 中评级栏的大小吗?

我想为其他按钮和编辑文本保留更多空间。

预先感谢您的帮助

I am currently working on a Mobile App project for Ford company, and I am a newbie in Java Android.

I am just wondering, is there any way to decrease the size of rating bar in Android 2.1?

I want to preserve more spaces for other buttons and edittexts.

Thank you in advance for you help

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

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

发布评论

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

评论(3

苦妄 2024-10-01 06:16:47

您可以尝试设置 style="?android:attr/ ratingBarStyleSmall"文档指出:

较小的评级栏样式 ( ratingBarStyleSmall) 和较大的仅指示符样式 ( ratingBarStyleIndicator) 不支持用户交互,只能用作指示符

You could try setting style="?android:attr/ratingBarStyleSmall" but the documentation states:

The smaller RatingBar style ( ratingBarStyleSmall) and the larger indicator-only style (ratingBarStyleIndicator) do not support user interaction and should only be used as indicators

何止钟意 2024-10-01 06:16:47

可以设置评级栏样式。正如前面的答案所说,文档说 ratingBarStyleSmall 是仅指示器样式。但我发现我可以使用以下方法将其设置为非指标:-

android:isIndicator="false"

Rating Bar Style can be set. As the previous answer says, documentation says ratingBarStyleSmall is indicator-only style. But I found that I could set it as not an indicator using:-

android:isIndicator="false"
伤感在游骋 2024-10-01 06:16:47

您可以通过更改 style.xml 中的四个属性来更改星星的大小,例如:

 <style name="RatingBar_style" parent="@android:style/Widget.RatingBar">
    <item name="android:minHeight">30dp</item>
    <item name="android:maxHeight">30dp</item>
    <item name="android:height">25dp</item>
    <item name="android:width">25dp</item>
 </style>

minHeight 和 maxHeight 充当放置星星的画布
根据您的要求更改高度和宽度属性。

You can change the size of stars by changing the four attributes in style.xml, for e.g.:

 <style name="RatingBar_style" parent="@android:style/Widget.RatingBar">
    <item name="android:minHeight">30dp</item>
    <item name="android:maxHeight">30dp</item>
    <item name="android:height">25dp</item>
    <item name="android:width">25dp</item>
 </style>

minHeight and maxHeight act like canvas on which stars are placed
Change the height and width attributes according to your requirement.

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