0

我有一个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则默认颜色可以正常工作。

似乎无法在任何地方找到解决方案。提前致谢。

4

2 回答 2

6

getProgressDrawable()在 android 6.0 中使用以下一个而不是

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);
于 2016-02-05T09:54:34.277 回答
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

于 2015-10-31T12:01:03.073 回答