找不到RippleDrawable

Rob*_*met 11 android rippledrawable

我想在代码中动态创建一个纹波.

码:

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
      buyButton.setBackground(getPressedColorRippleDrawable(primaryColor, darkerVariant));
}

public static RippleDrawable getPressedColorRippleDrawable(int color, int darkerVariant) {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        ColorStateList colorStateList = new ColorStateList(
                new int[][]
                        {new int[]{}},
                new int[]
                        {darkerVariant}
        );
        return new RippleDrawable(colorStateList, new ColorDrawable(color), null);
    }
    return null;
}
Run Code Online (Sandbox Code Playgroud)

这适用于棒棒糖,但会使我的GNEX(4.3)上的应用程序崩溃.
错误:

找不到类'android.graphics.drawable.RippleDrawable',从方法片段引用.ProductDetailFragment.getPressedColorRippleDrawable

07-17 12:57:45.757 30992-30992/com.comizzo.ginsonline E/AndroidRuntime:致命例外:主要

java.lang.VerifyError:fragments/ProductDetailFragment

但RippleDrawable从未在Gnex上使用,因为代码未被执行.

我怎样才能解决这个问题 ?

Win*_*Oak 9

问题是你需要返回一个Drawable而不是一个RippleDrawable getPressedColorRippleDrawable.否则,在pre-lollipop设备上,您将获得VerifyError.


Shu*_*uri 5

该代码确实没有被执行。该应用程序崩溃,因为您收到了java.lang.VerifyError. Project ? Clean如果您使用的是 Eclipse 或Build ? Rebuild projectAndroid Studio,请尝试执行。