Ratingbar的最后一颗星星正在播种

时间:2019-07-03 14:26:41

标签: android android-design-library

我正在用RecyclerView显示每个用户的评分。但是,尽管我有足够的空间,但收视率栏上的最后一颗星星却被裁剪了。示例图片显示在这里ratting cropped

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <TextView
                    android:id="@+id/review_user_name"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Shahrear Bin Amin rated it"/>

                <RatingBar
                    android:paddingLeft="5dp"
                    android:id="@+id/each_user_rating"
                    style="?android:attr/ratingBarStyleSmall"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:isIndicator="true"
                    android:numStars="5"/>

            </LinearLayout>

1 个答案:

答案 0 :(得分:0)

marginStart上使用paddingLeft代替RatingBar

<RatingBar
    android:marginStart="5dp"
    android:id="@+id/each_user_rating"
    style="?android:attr/ratingBarStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:isIndicator="true"
    android:numStars="5"/>