使用 kotlin 的 recyclerview 中的数据绑定导致问题

Posted

技术标签:

【中文标题】使用 kotlin 的 recyclerview 中的数据绑定导致问题【英文标题】:Databinding in recyclerview using kotlin causing issue 【发布时间】:2021-12-30 01:10:59 【问题描述】:

这是我的应用级 gradle 文件

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'kotlin-kapt'
android 
    compileSdkVersion 31
    buildToolsVersion "30.0.3"

    defaultConfig 
        applicationId "com.app.myapplication"
        minSdkVersion 19
        targetSdkVersion 31
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        
    

    compileOptions 
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    
    kotlinOptions 
        jvmTarget = '1.8'
    
    buildFeatures 
        dataBinding  = true
    


kapt 
    generateStubs = true
    correctErrorTypes = true


sourceSets 
    main 
        java 
            srcDir "$buildDir/generated/source/kapt/main"
        
    
    test 
        java 
            srcDir 'src/test/java'
        
    

dependencies 

    implementation 'androidx.core:core-ktx:1.7.0'
    kapt "com.android.databinding:compiler:3.2.0-alpha10"
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation 'androidx.appcompat:appcompat:1.3.1'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
    implementation 'android.arch.lifecycle:extensions:1.1.1'
    implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.1'
    implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:4.8.0'
    implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
    //glide
    implementation 'com.github.bumptech.glide:glide:4.11.0'
    kapt 'com.github.bumptech.glide:compiler:4.11.0'
    implementation 'android.arch.lifecycle:extensions:1.1.1'
    implementation 'android.arch.paging:runtime:1.0.1'

    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

这是我的主要 gradle 文件

buildscript 
    ext.kotlin_version = "1.4.10"
    repositories 
        google()
        jcenter()
    
    dependencies 
        classpath "com.android.tools.build:gradle:4.1.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    

我正在尝试使用 kotlin 在 recyclerview 中实现数据绑定。但它给了我运行时错误

任务 ':app:kaptDebugKotlin' 执行失败。

执行 org.jetbrains.kotlin.gradle.internal.KaptExecution 时发生故障 java.lang.reflect.InvocationTargetException(没有错误信息)

有人遇到过同样的错误吗?我已经搜索并浏览了许多与此错误相关的链接,但所有链接都指出使用了我没有使用的房间库,但仍然出现此错误。 非常感谢任何帮助。 谢谢

【问题讨论】:

【参考方案1】:

代替

buildFeatures 
        dataBinding  = true
    

试试这个

buildFeatures 
        dataBinding true //<--- for binding the data 
        viewBinding true //<-- for binding the view 

    

【讨论】:

根据您的建议更新我的代码时它没有工作。它给了我同样的错误。【参考方案2】:

我在更新后解决了这个错误 Android工作室到

Android Studio 北极狐 2020.3.1 补丁 3

也更新了

升级到 7.0.3

kotlin 插件更新到 1.5.20。

基本上我更新了我所有的资源,错误就解决了。

更新的 gradle 文件

应用级分级

plugins 
    id 'com.android.application'
    id 'kotlin-android'


android 
    compileSdkVersion 31
    buildToolsVersion "30.0.3"

    defaultConfig 
        applicationId "com.app.navigationdemoapp"
        minSdkVersion 19
        targetSdkVersion 31
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    

    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        
    
    compileOptions 
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    
    kotlinOptions 
        jvmTarget = '1.8'
    


dependencies 

    implementation "androidx.navigation:navigation-fragment-ktx:2.4.0-beta02"
    implementation "androidx.navigation:navigation-ui-ktx:2.4.0-beta02"
    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.0'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

项目级分级

buildscript 
    ext.kotlin_version = "1.5.20"
    repositories 
        google()
        mavenCentral()
    
    dependencies 
        classpath "com.android.tools.build:gradle:7.0.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
     
    


allprojects 
    repositories 
        google()
        mavenCentral()
    


task clean(type: Delete) 
    delete rootProject.buildDir

【讨论】:

以上是关于使用 kotlin 的 recyclerview 中的数据绑定导致问题的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio(Kotlin)之RecyclerView

Kotlin 中的 RecyclerView itemClickListener [关闭]

Kotlin Part4, RecyclerView 使用Kotlin的适配器模型开发

使用 RecyclerView 的多视图 - Kotlin(Android) - 无法切换视图

Kotlin中实现RecyclerView嵌套RecyclerView

在 Fragment 中使用 RecyclerView 时出现 Kotlin 错误的 Android