【发布时间】:2015-09-24 14:45:58
【问题描述】:
在 android 中设置自定义评分栏时我遇到了一些问题。我已按照本教程进行操作:
How to create Custom Ratings bar in Android
但是,我在更改/选择超过 4 颗星时遇到了问题。选择的星图有点错位。这是一张图片,向您展示它的外观。
这是我用于创建自定义评分栏的 XML。
定义评分栏视图的主xml:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:gravity="center" >
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="19dp"
android:numStars="50"
android:stepSize="1.0"
style="@style/AppCustomRatingBar"/>
RatingBar 的自定义样式
<style name="AppCustomRatingBar"
parent="@android:style/Widget.RatingBar">
<item name="android:progressDrawable">@drawable/rating_stars_custom</item>
<item name="android:minHeight">19dp</item>
<item name="android:maxHeight">19dp</item>
</style>
rating_stars_custom.xml
<item
android:id="@android:id/background"
android:drawable="@drawable/rating_stars_yellow_empty" />
<item android:id="@android:id/secondaryProgress"
android:drawable="@drawable/rating_stars_yellow_empty" />
<item
android:id="@android:id/progress"
android:drawable="@drawable/rating_stars_yellow_full" />
rating_stars_yellow_empty.xml
<?xml version="1.0" encoding="utf-8"?>
<item
android:id="@android:id/background"
android:drawable="@drawable/rating_stars_yellow_empty" />
<item android:id="@android:id/secondaryProgress"
android:drawable="@drawable/rating_stars_yellow_empty" />
<item
android:id="@android:id/progress"
android:drawable="@drawable/rating_stars_yellow_full" />
rating_stars_yellow_full.xml
<item android:state_pressed="true"
android:state_window_focused="true"
android:drawable="@drawable/home_icon_star_fill_selected" />
<item android:state_focused="true"
android:state_window_focused="true"
android:drawable="@drawable/home_icon_star_fill_selected" />
<item android:state_selected="true"
android:state_window_focused="true"
android:drawable="@drawable/home_icon_star_fill_selected" />
<item android:drawable="@drawable/home_icon_star_fill_selected" />
我做错了什么,放错了星星?星星(黄色和白色)的图像尺寸相同。
【问题讨论】:
标签: android xml android-drawable ratingbar