gpt4 book ai didi

android - 如何减小 Ratingbar 的大小?

转载 作者:IT老高 更新时间:2023-10-28 13:01:38 25 4
gpt4 key购买 nike

在我的 Activity 中,我有一些评分栏。但是这个酒吧的规模是如此之大!我怎样才能让它变小?

编辑

感谢加布里埃尔·内古特,我用以下风格做到了:

<RatingBar
style = "?android:attr/ratingBarStyleSmall"
android:numStars = "5"
android:rating = "4" />

现在,尺寸缩小了,但星数和评分不生效!!!为什么?我有 7 颗星,其中 6 颗被选中。

最佳答案

我发布的原始链接现在已损坏(有充分理由说明仅发布链接不是最佳方式)。您必须使用 ratingBarStyleSmall 或从 Widget.Material.RatingBar.Small 继承的自定义样式来设置 RatingBar 的样式(假设您使用的是 Material在您的应用中设计)。

选项 1:

<RatingBar
android:id="@+id/ratingBar"
style="?android:attr/ratingBarStyleSmall"
... />

选项 2:

// styles.xml
<style name="customRatingBar"
parent="android:style/Widget.Material.RatingBar.Small">
... // Additional customizations
</style>

// layout.xml
<RatingBar
android:id="@+id/ratingBar"
style="@style/customRatingBar"
... />

关于android - 如何减小 Ratingbar 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6153587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com