具有自定义大小的评分栏
Posted
技术标签:
【中文标题】具有自定义大小的评分栏【英文标题】:Rating bar with custom size 【发布时间】:2018-05-18 23:15:39 【问题描述】:我必须以我的自定义尺寸显示评分栏。但在我自定义大小的评分栏的情况下,星星在我的布局中消失了。我可以管理评级栏的填充大小和边距吗?
<RatingBar
android:focusable="false"
android:id="@+id/rating_order"
android:layout_
android:layout_
android:layout_gravity="center"
android:numStars="5"
android:stepSize="1.0"
android:scaleX="0.3"
android:scaleY="0.3" />
【问题讨论】:
How to make a smaller RatingBar?的可能重复 另见How can I decrease the size of Ratingbar? 这不完全一样,因为他用自定义图标来做,他不想只是减小尺寸 @motis10 在上面的链接中也有答案 【参考方案1】:您可以尝试从样式中设置参数:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomRatingBar" parent="@android:style/Widget.RatingBar" >
<item name="android:numStars">5</item>
<item name="android:stepSize">1.0</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:paddingBottom">44dp</item>
<item name="android:layout_marginLeft">4dp</item>
<item name="android:layout_marginTop">4dp</item>
</style>
<resources />
然后在你的RatingBar
中添加一个样式:
style="@style/CustomRatingBar"
【讨论】:
谢谢。你给了我找到希望的答案的方法。我只是将样式父级更改为 @android:style/Widget.Material.RatingBar.Small 。这使我的问题。非常感谢先生。 你知道我如何以编程方式设置每颗星或特定星的大小,比如 5 颗星中的第 3 颗吗?以上是关于具有自定义大小的评分栏的主要内容,如果未能解决你的问题,请参考以下文章