- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象:
observableProvider.stringForKey(CURRENT_DELETED_ID)
.subscribe(str -> this.elementDeleted(str));
问题是,我收到这个有趣的错误:
方法“void elementDeleted(String)”预计为 direct 类型,但结果发现为 virtual 类型(“java.lang.reflect.ArtMethod”的声明出现在/system/framework/中) core-libart.jar)
该函数如下所示:
private elementDeleted(String elemId) {
// removing element from some lists
this.updateView();
}
有帮助的是将函数 elementDeleted(String)
设置为 public,但随后我在调用函数 updateUser
时遇到相同的错误。因此,为了解决这个问题,我必须将从该点调用的所有函数设置为公共(public)。这不可能是解决方案。
即使我尝试提供这样的函数引用:
observableProvider.stringForKey(CURRENT_DELETED_ID)
.subscribe(this::elementDeleted);
没用。我认为它甚至无法与公共(public)功能一起使用。
希望你能帮助我。
编辑这是我的 gradle 文件:
apply plugin: 'com.android.application'
apply plugin: 'realm-android'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'dexguard'
android {
buildToolsVersion '24.0.1'
compileSdkVersion 24
defaultConfig {
applicationId "com.myapp.isthebest"
minSdkVersion 21
targetSdkVersion 24
versionCode 380
versionName "0.1.8"
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
debug {
proguardFile getDefaultDexGuardFile('dexguard-debug.pro')
proguardFile 'proguard-project.pro'
proguardFile 'proguard-project-debug.pro'
ndk {
abiFilters = ['armeabi-v7a', 'x86']
}
jniDebuggable true
}
release {
proguardFile getDefaultDexGuardFile('dexguard-release-aggressive.pro')
proguardFile 'proguard-project.pro'
proguardFile 'proguard-project-release.pro'
signingConfig signingConfigs.release
lintOptions {
disable 'MissingTranslation'
}
ndk {
abiFilters = ['armeabi-v7a']
}
}
beta {
proguardFile getDefaultDexGuardFile('dexguard-release-aggressive.pro')
proguardFile 'proguard-project.pro'
proguardFile 'proguard-project-release.pro'
proguardFile 'proguard-project-beta.pro'
signingConfig signingConfigs.release
lintOptions {
disable 'MissingTranslation'
}
ndk {
abiFilters = ['armeabi-v7a']
}
}
}
dexOptions {
javaMaxHeapSize "4g"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/DEPENDENCIES'
}
dataBinding {
enabled = true
}
testOptions {
unitTests.returnDefaultValues = true
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.android.support:recyclerview-v7:24.1.1'
compile 'com.android.support:cardview-v7:24.1.1'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:multidex:1.0.1'
compile 'org.functionaljava:functionaljava:4.4'
compile 'fr.avianey.com.viewpagerindicator:library:2.4.1@aar'
compile 'io.reactivex:rxjava:1.1.6'
compile 'com.squareup.picasso:picasso:2.6.0-20161009.170155-29'
compile 'com.appyvet:materialrangebar:1.3'
compile 'com.google.code.gson:gson:2.4'
compile 'commons-codec:commons-codec:1.10'
compile 'commons-io:commons-io:2.4'
compile 'org.apache.commons:commons-collections4:4.1'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'com.amazonaws:aws-android-sdk-core:2.2.20'
compile 'com.amazonaws:aws-android-sdk-cognito:2.2.20'
compile 'com.amazonaws:aws-android-sdk-s3:2.2.20'
compile 'com.amazonaws:aws-android-sdk-ddb:2.2.20'
compile 'com.amazonaws:aws-android-sdk-ddb-mapper:2.2.20'
compile 'net.hockeyapp.android:HockeySDK:4.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'us.feras.mdv:markdownview:1.1.0'
compile 'ly.count.android:sdk:16.06.03'
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.1'
compile 'com.nulab-inc:zxcvbn:1.1.4'
compile 'com.neovisionaries:nv-websocket-client:1.30'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.github.pwittchen:reactivenetwork:0.5.2'
testCompile 'com.squareup.retrofit2:retrofit-mock:2.1.0'
testCompile 'junit:junit:4.12'
testCompile 'org.robolectric:robolectric:3.0'
testCompile 'org.mockito:mockito-core:1.9.5'
testCompile 'org.powermock:powermock-module-junit4:1.6.1'
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
provided 'com.google.auto.value:auto-value:1.2'
apt "com.google.auto.value:auto-value:1.2"
apt 'com.ryanharter.auto.value:auto-value-gson:0.4.3'
provided 'com.ryanharter.auto.value:auto-value-gson:0.4.3'
compile 'com.google.dagger:dagger:2.7'
apt "com.google.dagger:dagger-compiler:2.7"
provided 'javax.annotation:jsr250-api:1.0'
compile 'javax.inject:javax.inject:1'
testCompile 'com.google.dagger:dagger:2.7'
testApt "com.google.dagger:dagger-compiler:2.7"
testProvided 'javax.annotation:jsr250-api:1.0'
testCompile 'javax.inject:javax.inject:1'
compile files('libs/dexguard-runtime.jar')
compile ':securekeyboard-runtime:@aar'
}
afterEvaluate {
dexguardRelease.logging.level = 'INFO'
}
最佳答案
我看到你正在为android构建,所以问题可能如下:构建集minSdkVersion 21 - android 5 lollipop AND targetCompatibility for java 8 - 从sdk 24开始受支持(尽管非常有限),从而导致你的构建问题。您可以通过三种方式解决此问题:
1) 为 minSdkVersion 24 构建,目标固定 0.4%设备数量
2) 摆脱 java 8 功能并将源/目标兼容性设置为 java 7
3) 使用 java 8 功能并使用 retrolambda 进行构建(有一些限制,存在于 lib 自述文件中)
关于java - IncompleteClassChangeError ...原本应该是 direct 类型,但结果却发现是 virtual 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41246673/
进程虚拟机和系统虚拟机有什么区别? 我的猜测是,进程 VM 没有为该操作系统的整个应用程序提供一种操作系统,而是为某些特定应用程序提供环境。 系统虚拟机为操作系统提供了一个安装环境,就像 Virtua
我在成员函数的上下文中理解 virtual,例如 virtual void frob()。但它在类声明的上下文中意味着什么,例如 class Foo : public virtual Bar? 对于给
根据 react-virtualized 文档,“AutoSizer 组件装饰 React 元素并自动管理宽度和高度属性,以便装饰元素填充可用空间”。 建议通常是加上height: 100%;或 fl
根据 this类似 StackOverflow 问题和其他文章,默认情况下 C# 方法是“非虚拟的”,我认为这意味着您不能在派生类中覆盖它们。 如果那是真的,能否请您向我解释一下,在下面的示例中,我如
我有一个基类Media和几个派生类,即DVD、Book等...基类写成: class Media{ private: int id; string title;
我搜索了一些关于虚函数声明的帖子,相信 =0 在 virtual void test()=0; 是固定句法所以 virtual void test()=NULL; virtual void test(
我正在使用 RV 列表加载具有自定义格式的大型文档。它非常有效,但我遇到了以下两个问题: 我目前在 cellmeasurer 中设置了一个列表 based on this计算行的动态高度(宽度是固定的
我一直在努力制作 this react virtualized table example工作 & 开始严重怀疑我的理智。我创建了一个 react 应用程序,我只是想在 App.js 中使用以下内容呈
我在Windows 7 Pro计算机上安装了Windows Virtual PC和Windows XP Mode。运行XP模式会在Virtual PC上自动安装XP。我想创建第二台与第一台相同的虚拟P
我使用 Virtual PC 来创建新的环境来测试我的安装程序。但我一定是做错了什么,因为内部装有 Vista 或 XP 的 VPC 镜像占用了大约 15GB 的磁盘空间(包括安装在其中的 VS200
是否可以为 Ubuntu 虚拟机动态分配处理器和内存?例如。进程在主机系统上运行,导致处理器的使用率从 30%-70% 上下波动,这些进程还占用 8GB 内存中 3GB-7GB 之间的波动量,即 1G
我正在使用“react-virtualized”来创建一个表。在该表中,一些数据可能显示为 'Brian Vaughn1'。 .此表格单元格应具有 font-weight: bold并且只应呈现文本,
我正在使用“react-virtualized”来创建一个表。在该表中,一些数据可能显示为 'Brian Vaughn1'。 .此表格单元格应具有 font-weight: bold并且只应呈现文本,
我一直在努力理解一段这样的代码: class A { // some class definition } class B { public: virtual A *s
基于 http://en.wikipedia.org/wiki/Virtual_inheritance class Animal { ... }; // Two classes virtually i
我看到 C++ 中的某些函数被声明为 virtual const int getNumber(); 但是如果函数声明如下有什么区别呢? const virtual int getNumber(); 这
问题来自C++ faq。 http://www.parashift.com/c++-faq-lite/protected-virtuals.html 使用公共(public)重载虚拟的代码: clas
这个问题在这里已经有了答案: How is "=default" different from "{}" for default constructor and destructor? (3 个答案
virtual final 函数(final 在基类)是否有任何 vtable/virtual 成本? class B{ public: virtual void fFinal() final
我有一个只包含 exe 文件(没有源代码)的 hello 工具。 你好工具结构: bin helloBin.exe helloRoot.exe conanfile.py conanfile.py
我是一名优秀的程序员,十分优秀!