ユーザーが1から7のスケールでさまざまなアイテム(画像)を評価する必要がある評価バーのリストビューがあります。リストビューのレイアウトとして、imageviewと評価バーを備えたlinearlayoutを使用しました。ただし、何らかの理由で、評価バーが使用可能なスペースを完全に占有せず、最後の星が不完全に表示されます。
そして私のレイアウトファイルは次のとおりです
<?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つの星が完全として表示され、最後の星が不完全として表示されます。