android.app,应用程序无法强制转换为生命周期所有者

e5njpo68  于 2023-03-11  发布在  Android
关注(0)|答案(4)|浏览(176)

不幸的是,我不能使用getApplication()作为LifecycleOwner,因为android.app.Application似乎没有实现它。
为什么android.app.application不实现生命周期所有者?
我尝试使用getApplication()作为LiveData的生命周期所有者的代码:

result.observe(getApplication(), ....);

等级:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "XXXX"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility = '1.8'
        targetCompatibility = '1.8'
    }

}

dependencies {
    // GENERAL
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.1.0-alpha07'
    implementation "androidx.room:room-runtime:2.1.0"
    annotationProcessor "androidx.room:room-compiler:2.1.0"
    implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
    annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.0.0"
    implementation "androidx.navigation:navigation-fragment:2.1.0-alpha05"
    implementation "androidx.navigation:navigation-ui:2.1.0-alpha05"

    // Third party libraries

    // Jetbrains
    implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.31'
    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0'

    // Glide
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'

    // Fotoapparat
    implementation 'io.fotoapparat:fotoapparat:2.7.0'

    // TEST
    testImplementation 'junit:junit:4.12'

    // ANDROID TEST
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    androidTestImplementation "androidx.room:room-testing:2.1.0"
}

错误:

java.lang.ClassCastException: ...
android.app.Application cannot be cast to androidx.lifecycle.LifecycleOwner
p4tfgftt

p4tfgftt1#

为什么android.app.application不实现生命周期所有者?
它没有生命周期。它被创建,然后在整个流程中存在。
我尝试使用getApplication()作为LiveData的生命周期所有者的代码:
要么使用具有实际生命周期的内容(活动、片段等),要么使用observeForever()

wfsdck30

wfsdck302#

你不能将the Application类转换为LifecycleOwner。另外,我想请你升级你的依赖项。在早期版本中,有一些与LifecyclerOwner相关的问题
尝试更新您的

implementation 'androidx.appcompat:appcompat:1.0.2'

变成了这样:

implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
xu3bshqb

xu3bshqb3#

如果您确实希望在Application的生命周期中观察LiveData,则可以使用ProcessLifecycleOwner

busg9geu

busg9geu4#

不能将应用程序强制转换为生命周期所有者
在协程作用域中尝试此操作

val uiScope= CoroutineScope(Dispatchers.Main)

uiScope.launch{
    result.observeForever {
   // it contains the livedata
}

}
并确保取消viewmodel destory上的作用域以避免内存泄漏

override fun onCleared() {
        uiScope.cancel()
        super.onCleared()
    }

相关问题