我想在代码中动态创建一个纹波。
代码:
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;
}
这适用于Lollipop,但会使我的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上使用,因为代码未执行。
我该如何解决这个问题?
答案 0 :(得分:8)
问题是您需要在getPressedColorRippleDrawable
中返回Drawable而不是RippleDrawable。否则,在pre-lollipop设备上,您将获得VerifyError。
答案 1 :(得分:2)
该代码确实没有被执行。该应用崩溃是因为您收到了java.lang.VerifyError
。如果您使用的是Eclipse,请尝试执行Project → Clean
;如果您使用的是Android Studio,请尝试Build → Rebuild project
。