2

我有一个 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 颗星显示为完整,最后一颗星显示为不完整。

4

1 回答 1

1

填充偏移 a 的内容View(在您的情况下将内容向右推),而不是:

android:paddingLeft="15dp"

尝试使用:

android:layout_marginLeft="15dp"
于 2013-03-12T16:40:24.997 回答