如何使RatingBar显示五颗星

时间:2010-10-04 19:50:49

标签: android xml layout

我正在遵循如何添加RatingBar的标准示例。为了控制我尝试使用android:numStars="5"的星星数量。问题是星星的数量似乎根本没有做任何事情。在纵向布局中,我获得了6颗星,当我翻动手机时,我得到了大约10颗星。我尝试设置加载xml的Activity(myBar.setNumStars(5))中的星数,但是该选项也没有成功。

所以我的问题是如何定义我的布局以便它只显示五颗星?设置numStars似乎不起作用。

提前致谢, 罗兰

18 个答案:

答案 0 :(得分:154)

<RatingBar
            android:id="@+id/rating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:attr/ratingBarStyleSmall"
            android:numStars="5"
            android:stepSize="0.1"
            android:isIndicator="true" />

代码

mRatingBar.setRating(int)

答案 1 :(得分:54)

RatingBar.setNumStar文档说:

  

设置要显示的星数。为了显示这些   正确地说,建议将此小部件的布局宽度换行   内容。

因此,将布局宽度设置为wrap_content可以解决此问题。

答案 2 :(得分:25)

这对我有用:RatingBar应该在LinearLayout内,而不是设置布局宽度来包装RatingBar的内容。

答案 3 :(得分:10)

此外,如果您设置layout_weight,则会取代numStars属性。

答案 4 :(得分:5)

<RatingBar
                    android:id="@+id/ratingBar"
                    style="@style/custom_rating_bar"
                    android:layout_width="wrap_content"
                    android:layout_height="35dp"
                    android:clickable="true"
                    android:numStars="5" 
                    />

配置XML文件中的星数...无需在样式或活动/片段中提供.... 重要提示:确保将WIDTH作为Wrap内容并且未启用权重

答案 5 :(得分:5)

我也面临着超过星星的问题而不是指定的星星。为此,我们不要担心布局类型的相对布局或线性布局。只需使用以下宽度:

ratingBar.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));


避免使用 match_parent和fill_parent ratingbar
希望事情会有所帮助。

答案 6 :(得分:4)

你应该使用 在您的XML中numStars="5"并设置 android:layout_width="wrap_content"
然后,您可以使用样式和其他东西,但layout_width中的“wrap_content”就是诀窍。

答案 7 :(得分:4)

如果您正在使用

android:layout_width="match_parent"

使用wrap_content,它只显示设置的numStars:)

android:layout_width="wrap_content"

答案 8 :(得分:3)

即使我正面临@Roland的问题,我还有一个名为

的属性
android:layout_alignParentRight="true" 

在我的RatingBar XML声明中。此属性无法设置所需的星标并设置NumStars

继续发布您遇到的问题!

答案 9 :(得分:2)

对我来说,在删除填充之前我遇到了问题。看起来某些设备上存在一个错误,它不会改变视图的大小以容纳填充,而是压缩内容。

删除padding,改为使用layout_margin

答案 10 :(得分:1)

如果将Server: 127.0.0.1:53183 Received: Me too server! #0 Server: 127.0.0.1:53182 Received: I am here server... #0 Server: 127.0.0.1:53181 Received: hi Server! #0 Server: 127.0.0.1:53182 Received: I am here server... #1 Server: 127.0.0.1:53183 Received: Me too server! #1 Server: 127.0.0.1:53181 Received: hi Server! #1 Server: 127.0.0.1:53182 Received: I am here server... #2 Server: 127.0.0.1:53183 Received: Me too server! #2 Server: 127.0.0.1:53181 Received: hi Server! #2 Server: 127.0.0.1:53182 Received: I am here server... #3 Server: 127.0.0.1:53181 Received: hi Server! #3 Server: 127.0.0.1:53183 Received: Me too server! #3 Server: 127.0.0.1:53183 Received: Me too server! #4 Server: 127.0.0.1:53181 Received: hi Server! #4 Server: 127.0.0.1:53182 Received: I am here server... #4 包裹在RatingBar的{​​{1}}里面,其宽度为ConstraintLayout,则无论什么情况,编辑器预览都将显示与其实际宽度成比例的星形如果您设置了match_constraint属性。使用android:numStars获得正确的预览:

wrap_content

答案 11 :(得分:1)

您可以在xml布局中添加五颗星的默认评级

android:rating="5"

编辑:

<RatingBar
        android:id="@+id/rb_vvm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginBottom="@dimen/space2"
        android:layout_marginTop="@dimen/space1"
        style="@style/RatingBar"
        android:numStars="5"
        android:stepSize="1"
        android:rating="5" />

答案 12 :(得分:1)

要在圆形图中显示简单的星级,请使用此代码

public static String getIntToStar(int starCount) {
        String fillStar = "\u2605";
        String blankStar = "\u2606";
        String star = "";

        for (int i = 0; i < starCount; i++) {
            star = star.concat(" " + fillStar);
        }
        for (int j = (5 - starCount); j > 0; j--) {
            star = star.concat(" " + blankStar);
        }
        return star;
    }

并像这样使用

button.setText(getIntToStar(4));

答案 13 :(得分:0)

另一种可能性是您使用列表视图的适配器评级

View android.view.LayoutInflater.inflate(int resource, ViewGroup root, boolean attachToRoot)

以下参数是所有属性正常工作所必需的:

  1. root 设置为 parent
  2. 布尔 attachToRoot false
  3. <强>实施例     convertView = inflater.inflate(R.layout.myId,parent,false);

答案 14 :(得分:0)

我发现RatingBar被拉伸到最大数量的星星,因为它被包含在具有属性android:stretchColumns = "*"的表中。

我从所有列中删除stretchCoulumns后,根据RatingBar值显示android:numStars

答案 15 :(得分:0)

<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <RatingBar
        android:id="@+id/ruleRatingBar"
        android:isIndicator="true"
        android:numStars="5"
        android:stepSize="0.5"
        style="?android:attr/ratingBarStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
</LinearLayout>

答案 16 :(得分:0)

默认值在xml布局中使用andoid:rating设置。

答案 17 :(得分:-1)

这里的实际情况是使用wrap_content而不是match_parent。如果您将使用match_parent,则布局将被星星填充,即使它大于 numStars 变量。