如何在Android评级栏中更改启动图像?
我需要它向用户显示。
或者如果不可能 - 如何在布局中的特定位置显示开始的X图像?
约阿夫
答案 0 :(得分:7)
我希望我能够解答你的问题 - 你想使用RatingBar并设置自定义图像吗?
Android RatingBar
已经显示了星标,但如果您想要自定义图片,请定义custom style
<style name="customRatingBar" parent="@android:style/Widget.RatingBar">
<item name="android:progressDrawable">@drawable/custom_image</item>
<item name="android:indeterminateDrawable">@drawable/custom_image</item>
</style>
然后使用它
<RatingBar style="@style/customRatingBar" ... />