Android RatingBar numStart不能正常工作

时间:2015-08-28 06:11:41

标签: rating ratingbar

我的应用中有简单的RatingBar。我设置了numStarts="5",但它显示了超过5星。当我设置ndroid:layout_width="match_parent"时,我尝试了几个教程,但也没有工作,按照文档numStarts显示启动次数,但在我的情况下,它确实无法正常工作。我通过doc和几个教程,但没有得到任何解决方案。

enter image description here

但我想在评级栏中只有5颗星。

我的评级栏如下。

<RatingBar
    style="@style/customRatingBar"
    android:id="@+id/course_rating_bar"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:layout_marginRight="16dp"
    android:layout_marginLeft="16dp"
    android:numStars="5"
    android:isIndicator="false"
    android:stepSize="1.0"/>

这是我的自定义风格

<style name="foodRatingBar" parent="@android:style/Widget.RatingBar">
        <item name="android:progressDrawable">@drawable/ratingstars</item>
        <item name="android:minHeight">22dip</item>
        <item name="android:maxHeight">22dip</item>
    </style>

...

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+android:id/background"
        android:drawable="@drawable/star_empty" />
    <item android:id="@+android:id/secondaryProgress"
        android:drawable="@drawable/star_empty" />
    <item android:id="@+android:id/progress"
        android:drawable="@drawable/star" />
</layer-list>

1 个答案:

答案 0 :(得分:1)

你必须设置android:layout_width =“wrap_content”而不是“match_parent”。然后你将获得5星。