我有RatingBar
:
<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleX="0.75"
android:isIndicator="false"
android:scaleY="0.75"
android:id="@+id/ratingBar"
android:stepSize="0.5"
android:numStars="5" />
我正在使用滤色器使评级栏的颜色为粉红色,如下所示:
ratingBar = (RatingBar) findViewById(R.id.ratingBar);
Drawable progressDrawable = ratingBar.getProgressDrawable();
if (progressDrawable instanceof LayerDrawable) {
LayerDrawable stars = (LayerDrawable) progressDrawable;
stars.getDrawable(2).setColorFilter(getResources().getColor(R.color.ColorSecondary), PorterDuff.Mode.SRC_ATOP);
stars.getDrawable(1).setColorFilter(getResources().getColor(R.color.ColorSecondary), PorterDuff.Mode.SRC_ATOP);
stars.getDrawable(0).setColorFilter(getResources().getColor(R.color.ColorSecondary), PorterDuff.Mode.SRC_ATOP);
}
除了Nexus 5(Android版本6.0)之外,所有手机都可以正常使用,其中5颗星都是粉红色,但默认情况下填充。即使我点击星星,它们也不会改变颜色,所有5个都会被填满。
然而,当我执行ratingBar.getRating()
时,它会返回我的用户触摸评级栏的位置的评级,这意味着它正在工作,只是滤色器出现故障。
如果我删除了滤镜,RatingBar
可以使用默认颜色。
似乎无法在任何地方找到解决方案。提前谢谢。
答案 0 :(得分:6)
在android 6.0中使用下面一个而不是getProgressDrawable()
LayerDrawable ldRating = (LayerDrawable) ratingBar.getProgressDrawable();
ldRating.getDrawable(0).setColorFilter(getResources().getColor(R.color.rate_empty_color), PorterDuff.Mode.SRC_ATOP);
ldRating.getDrawable(1).setColorFilter(getResources().getColor(R.color.rate_half_color), PorterDuff.Mode.SRC_ATOP);
ldRating.getDrawable(2).setColorFilter(getResources().getColor(R.color.rate_full_color), PorterDuff.Mode.SRC_ATOP);
答案 1 :(得分:1)
对不起,这不是答案,但是什么驱动了从代码设置它的要求?如果正确定义,.setProgressDrawable应该可以正常工作
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners
android:radius="5dip" />
<gradient
android:startColor="@color/progress_start"
android:endColor="@color/progress_end"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
有关进度条的颜色过滤器需要更多详细信息请点击此链接:http://ambracode.com/index/show/14297