android.view.windowinsets
是在API级别20中添加的。
我在我的CustomLayout
中导入Android.view.WindowInsets
并重写OnAppleWindowInsets(WindowInsetsInsets)
,但ClassNotFoundException
出现在api级别从14到21的某些电话中。原因何在?
发生在:根Nexus 5,Android 4.4.2
堆栈跟踪:
Fatal Exception: java.lang.NoClassDefFoundError: android/view/WindowInsets
at java.lang.Class.getDeclaredMethods(Class.java)
at java.lang.Class.getDeclaredMethods(Class.java:656)
at android.view.ViewDebug.getExportedPropertyMethods(ViewDebug.java:960)
at android.view.ViewDebug.exportMethods(ViewDebug.java:1047)
at android.view.ViewDebug.dumpViewProperties(ViewDebug.java:997)
at android.view.ViewDebug.dumpViewProperties(ViewDebug.java:983)
at android.view.ViewDebug.dumpView(ViewDebug.java:900)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:855)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dumpViewHierarchy(ViewDebug.java:867)
at android.view.ViewDebug.dump(ViewDebug.java:793)
at android.view.ViewDebug.dispatchCommand(ViewDebug.java:416)
at android.view.ViewRootImpl$W.executeCommand(ViewRootImpl.java:6258)
at android.view.IWindow$Stub.onTransact(IWindow.java:65)
at android.os.Binder.execTransact(Binder.java:404)
at dalvik.system.NativeStart.run(NativeStart.java)
Caused by java.lang.ClassNotFoundException: Didn't find class "android.view.WindowInsets" on path: DexPathList[[zip file "/data/app/***-1.apk"],nativeLibraryDirectories=[/data/app-lib/***-1, /vendor/lib, /system/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:497)
at java.lang.ClassLoader.loadClass(ClassLoader.java:457)
at java.lang.Class.getDeclaredMethods(Class.java)
at java.lang.Class.getDeclaredMethods(Class.java:656)
at android.view.ViewDebug.getExportedPropertyMethods(ViewDebug.java:960)
at android.view.ViewDebug.exportMethods(ViewDebug.java:1047)
at android.view.ViewDebug.dumpViewProperties(ViewDebug.java:997)
at android.view.ViewDebug.dumpViewProperties(ViewDebug.java:983)
at android.view.ViewDebug.dumpView(ViewDebug
系统遍历视图的所有公共方法,并遇到重写的onapplywindowinsets
withwindowinsets
参数。系统中不存在此类型,因此发生崩溃。
Lollipop引入了view.onapplywindowinsets
方法,但它也引入了onapplywindowinsetslistener
,如果设置了该方法,将调用该方法,而不是前面提到的方法。
我在运行Android4.4的三星设备上有过这样的报道。
可以通过转储视图层次结构来触发。
到目前为止这还不能解决任何问题。support-v4库提供了帮助:
public class SampleView extends View {
public SampleView(final Context context) {
this(context, null);
}
public SampleView(final Context context, @Nullable final AttributeSet attrs) {
this(context, attrs, 0);
}
public SampleView(final Context context, @Nullable final AttributeSet attrs, final int defStyleAttr) {
super(context, attrs, defStyleAttr);
ViewCompat.setOnApplyWindowInsetsListener(this, new android.support.v4.view.OnApplyWindowInsetsListener() {
@Override
public WindowInsetsCompat onApplyWindowInsets(final View v, final WindowInsetsCompat insets) {
// Do whatever you needed to do in the first place...
return insets.consumeSystemWindowInsets();
}
});
}
}
在公共构造函数中使用上面的内容。WindowinSetsCompat
是由support-v4库提供的,因此它始终存在,它不会直接在视图上公开任何不存在的未来类,并且该代码仅在Lollipop之后才有效(在Lollipop中引入了实际的WindowinSets
)。
前两章讨论了几种保持 DRY 和灵活性的函数式编程技术: 函数组合(function composition) 部分函数应用(partial function application) 柯里化(currying) 这一章依旧围绕代码灵活性而来,不过不再讨论作为头等公民的函数,而是类型系统(注意:并不是要真的去研究类型系统)。 你将学习 类型类 ! 可能你会觉得这没有实际意义,认为这是被 Haske
我想使用JDBC我在类路径中添加了Mysql驱动程序,如下所示: 但即使这样我也会犯这个错误: java.lang.ClassNotFoundException:com.mysql.jdbc.driver在java.net.urlClassLoader$1上运行(urlClassLoader.java:366)在java.net.urlClassLoader$1上运行(urlClassLoader
我正在尝试在Pentaho 5上执行map reduce。对于Pentaho 5,Pentaho应用程序是为Apache Hadoop 0.20.2预先配置的,它表示此版本无需进一步配置。我使用cygwin在windows上安装了Hadoop 0.20.2,一切正常。我在Pentaho上运行了一个简单的作业,该作业将文件复制到HDFS中,并成功完成,文件系统被复制到HDFS中。但是,当我运行map
编辑:OK,在typescript规范中有详细说明:类型断言
我现在正在学习Java类。 我有班主任。从Person我有两个子类,父亲和母亲。一个父亲可以有三个孩子(孩子1、孩子2、孩子3)。现在我想与孩子的父亲共同接触。我怎么能那样做? 我当前的代码: 班级人物 班级父亲 我的main。java 我创建一个父亲和一个人,并将其分配给子1。 现在,我想通过p1得到孩子1的父亲的名字。我怎么能那样做?