我有一个 ratingbar 的列表视图,用户需要在 1 到 7 的范围内对不同的项目(图像)进行评分。我使用了带有 imageview 和 ratingbar 的线性布局作为我的列表视图的布局。然而,由于某些未知原因,评级栏没有占用完整的可用空间,我的最后一颗星显示不完整。
我的布局文件如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="40dp"
android:padding="10dp" >
<ImageView
android:id="@+id/logo"
android:layout_width="80dp"
android:layout_height="match_parent"
android:padding="5dp"
android:scaleType="centerInside" />
<RatingBar
android:id="@+id/ratingbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:isIndicator="false"
android:paddingLeft="15dp"
android:stepSize="1.0" >
</RatingBar>
</LinearLayout>
我在我的代码中设置了 numStars 。如果我将 numstars 增加到 8,同样的事情会发生,7 颗星显示为完整,最后一颗星显示为不完整。