Android RatingBar:getProgressDrawable不会转换为正确的类

时间:2015-03-16 14:02:49

标签: android ratingbar

我正在使用

Android RatingBar change star colors

这行代码

    LayerDrawable stars = (LayerDrawable) rating_bar.getProgressDrawable();

在我的Nexus 4模拟器API v21上运行正常。 在我的Galaxy S4 API v19上尝试相同的代码时,我收到以下错误消息:

 Caused by: java.lang.ClassCastException: android.support.v7.internal.widget.TintDrawableWrapper cannot be cast to android.graphics.drawable.LayerDrawable

发生了什么事?

我正在构建最新的构建工具22,我的目标API也是22。

5 个答案:

答案 0 :(得分:2)

错误信息中明确说明了什么:

TintDrawableWrapper cannot be cast to android.graphics.drawable.LayerDrawable

支持lib创建一个包装器以处理复古兼容性,您只需要考虑它。看看lib实现,它可能包含LayerDrawable

你需要做一些事情:

LayerDrawable stars = getProgressDrawable(rating_bar);
}

private LayerDrawable getProgressDrawable(RatingBar ratingBar) {
  if (Build.VERSION >= LOLLIPOP) {
    return (LayerDrawable) ratingBar.getProgressDrawable();
  } else {
    // fetch the LayerDrawable based on Google's support implementation,  
    // probably a simple findViewById()
  }
}

答案 1 :(得分:0)

LayerDrawable用于API v21。

答案 2 :(得分:0)

创建RatingDialog的子类并使用它代替android.widget.RatingBar为我工作。这是我使用的代码。

子类:

public class RatingBar extends android.widget.RatingBar {
public RatingBar(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}

public RatingBar(Context context, AttributeSet attrs) {
    super(context, attrs);
}
}

然后在我的布局中:

 <your.package.RatingBar
    android:id="@+id/rating_bar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    />

然后在您投射课程的班级中,只需使用your.package.RatingBar代替android.widget.RatingBar

答案 3 :(得分:0)

今天以编程方式创建RatingBar时遇到了同样的问题。以下解决方法也适用于使用AppCompatRatingBar的 Android 4.x 设备:

AppCompatRatingBar rb = new AppCompatRatingBar(activity);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
layoutParams.gravity = Gravity.CENTER;
rb.setLayoutParams(layoutParams);
rb.setStepSize(1.0f);
rb.setMax(5);

LayerDrawable layerDrawable = null;
if (rb.getProgressDrawable() instanceof LayerDrawable) {
    layerDrawable = (LayerDrawable) rb.getProgressDrawable();
} else if (rb.getProgressDrawable() instanceof DrawableWrapper) {
    DrawableWrapper wrapper = (DrawableWrapper) rb.getProgressDrawable();
    if (wrapper.getWrappedDrawable() instanceof LayerDrawable) {
        layerDrawable = (LayerDrawable) wrapper.getWrappedDrawable();
    }
}

if (layerDrawable != null) {
    layerDrawable.getDrawable(2).setColorFilter(Color.WHITE, PorterDuff.Mode.SRC_ATOP);
    layerDrawable.getDrawable(0).setColorFilter(Color.WHITE, PorterDuff.Mode.SRC_ATOP);
    layerDrawable.getDrawable(1).setColorFilter(ContextCompat.getColor(activity, R.color.primary), PorterDuff.Mode.SRC_ATOP);
}

答案 4 :(得分:0)

请尝试这个技巧,通过添加 getCurrent()方法返回一个drawable可以正常工作。

RatingBar ratingBar =(ratingBar)findViewById(R.id.ratingBar);

LayerDrawable stars =(LayerDrawable)ratingBar.getProgressDrawable()。getCurrent();

stars.getDrawable(2).setColorFilter(getResources()。getColor(R.color.colorPrimary),PorterDuff.Mode.SRC_ATOP);         stars.getDrawable(0).setColorFilter(getResources()。getColor(R.color.white),PorterDuff.Mode.SRC_ATOP);         stars.getDrawable(1).setColorFilter(getResources()。getColor(R.color.colorPrimary),PorterDuff.Mode.SRC_ATOP);