- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
AndroidStudio 2.2.3 无法解析我的 RealmRecyclerViewAdapter 引用。我已经直接从 Realm 站点关注了 RecyclerViewAdaper 示例。有人可以帮我弄清楚为什么找不到 RealmRecyclerViewAdapter 吗?
这是我的导入语句:
import io.realm.OrderedRealmCollection;
import io.realm.RealmRecyclerViewAdapter; //this fails
这是我的项目级 gradle 文件:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'io.realm:realm-gradle-plugin:2.2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的应用程序级 gradle 文件:
应用插件:'com.android.application'应用插件:'realm-android'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.creditcardcalcx"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
}
最佳答案
是的,您缺少以下依赖项
dependencies {
compile 'io.realm:android-adapters:1.4.0'
}
关于AndroidStudio 未找到 RealmRecyclerViewAdapter - android Realm 插件 :2. 2.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41508992/
我很好地使用了 RealmRecyclerViewAdapter。我的问题是实现一个不起作用的 Filterable。这是代码: private class AirportAdapter exten
我在使用 RealmRecyclerViewAdapter 时遇到了一个奇怪的问题。我重写了类,为初始数据指定了 null,为 autoUpdate 指定了 true。适配器已经为 RecyclerV
我正在尝试使用 SearchView 来过滤 RealmRecyclerViewAdapter 提供的列表。我已经尝试了 StackOverflow 上建议的几种方法,包括: EpicPandaFor
一直在使用 realm,它很棒。 遇到了一些事情。想知道我是否做错了什么。 我有一个 RealmRecyclerViewAdapter 用来显示 Realm 查询的结果。如果我在 Realm 中添加或
AndroidStudio 2.2.3 无法解析我的 RealmRecyclerViewAdapter 引用。我已经直接从 Realm 站点关注了 RecyclerViewAdaper 示例。有人可以
我是一名优秀的程序员,十分优秀!