减小 Android 2.1 中评级栏的大小
我目前正在为福特公司开发一个移动应用程序项目,并且我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试设置
style="?android:attr/ ratingBarStyleSmall"
但 文档指出:You could try setting
style="?android:attr/ratingBarStyleSmall"
but the documentation states:可以设置评级栏样式。正如前面的答案所说,文档说 ratingBarStyleSmall 是仅指示器样式。但我发现我可以使用以下方法将其设置为非指标:-
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:-
您可以通过更改 style.xml 中的四个属性来更改星星的大小,例如:
minHeight 和 maxHeight 充当放置星星的画布
根据您的要求更改高度和宽度属性。
You can change the size of stars by changing the four attributes in style.xml, for e.g.:
minHeight and maxHeight act like canvas on which stars are placed
Change the height and width attributes according to your requirement.