达到XpInsetDrawable.create(Drawable, int)
(下面的代码)时抛出VerifyError
。当不使用即时运行时,不会发生这种情况。
我使用的是Android Studio 2.0.0和gradle构建插件2.0.0。在SDK 22上测试。当在SDK 19模拟器上运行时,整个模拟器将重新启动。
我正在寻找一个解决方案,而不是"禁用即时运行"。
异常(整个堆栈跟踪不相关)
Caused by: java.lang.VerifyError:
Verifier rejected class net.xpece.android.support.preference.XpInsetDrawable due to bad method
java.lang.Object net.xpece.android.support.preference.XpInsetDrawable.access$super(
net.xpece.android.support.preference.XpInsetDrawable,
java.lang.String,
java.lang.Object[])
(declaration of 'net.xpece.android.support.preference.XpInsetDrawable'
appears in /data/data/net.xpece.android.support.preference.sample/files/instant-run/dex/slice-slice_7-classe
类源代码
final class XpInsetDrawable extends InsetDrawable {
private static final boolean NEEDS_FIXING = Build.VERSION.SDK_INT < 21;
private final Rect mInset = new Rect();
public static InsetDrawable create(final Drawable drawable, final int insetLeft, final int insetTop, final int insetRight, final int insetBottom) {
if (NEEDS_FIXING) {
return new XpInsetDrawable(drawable, insetLeft, insetTop, insetRight, insetBottom);
} else {
return new InsetDrawable(drawable, insetLeft, insetTop, insetRight, insetBottom);
}
}
public static InsetDrawable create(final Drawable drawable, final int inset) {
if (NEEDS_FIXING) {
return new XpInsetDrawable(drawable, inset);
} else {
return new InsetDrawable(drawable, inset);
}
}
XpInsetDrawable(final Drawable drawable, final int inset) {
super(drawable, inset);
mInset.set(inset, inset, inset, inset);
}
XpInsetDrawable(final Drawable drawable, final int insetLeft, final int insetTop, final int insetRight, final int insetBottom) {
super(drawable, insetLeft, insetTop, insetRight, insetBottom);
mInset.set(insetLeft, insetTop, insetRight, insetBottom);
}
@Override
public int getIntrinsicHeight() {
return super.getIntrinsicHeight() + mInset.top + mInset.bottom;
}
@Override
public int getIntrinsicWidth() {
return super.getIntrinsicWidth() + mInset.left + mInset.right;
}
}
更新2016-08-25:修复在Android Studio 2.2-beta3中发布的问题。
更新2016-07-15:修复的目标版本现在是Android Studio 2.3。
我向安卓系统提交了一个错误,以下是dev j..@google.com对此的看法:
有趣!
XpInsetDrawable是InsetDrawble的一个子类,其父项已在23中更改。从23开始,InsetDrawable子类是在23中添加的DrawableWrapper。该应用程序是用CompileSdkVersion 23编译的,因此我们为DrawableWrapper方法生成方法访问。
现在当在<23,这些方法不存在,实际上类不存在,所以我们爆炸了。
目前的解决方法是将compileSdkVersion设置为较低版本,或者在InstantRun模式下于23运行应用程序。
和
潜在的解决方案是针对目标设备API级android.jar而不是compileSdkVersion。这对于2.1来说太复杂了,目标是2.2。
来源:https://code.google.com/p/android/issues/detail?id=206746
这意味着在Android Studio 2.2发布之前,我不能将InsetDrawable
子类化并同时使用Instant Run。
我将研究将SDK 22 InsetDrawable
直接复制到我的项目中。