Kotlin Android:属性委托必须有一个“getValue(DashViewModel, KProperty*>)”方法

use*_*789 9 android kotlin kotlin-extension android-livedata

我正在尝试遵循 Kotlin 中 ViewModels 的官方 Android 指南。我从字面上复制粘贴了最简单的官方示例,但语法似乎是非法的。

此部分导致问题:

private val users: MutableLiveData<List<User>> by lazy {
    MutableLiveData().also {
        loadUsers()
    }
}
Run Code Online (Sandbox Code Playgroud)

预览给了我这个错误:

Property delegate must have a 'getValue(DashViewModel, KProperty*>)' method. None of the following functions is suitable.
Run Code Online (Sandbox Code Playgroud)

如果我想启动应用程序,我会收到此错误:

Type inference failed: Not enough information to infer parameter T in constructor MutableLiveData<T : Any!>()
Please specify it explicitly.
Run Code Online (Sandbox Code Playgroud)

我不明白这两个错误和其他具有相同错误的问题似乎是由不同的原因引起的。我的猜测是MutableLiveData().also导致问题的原因,但我不知道为什么。考虑到这是一个官方示例,这很奇怪。

Com*_*are 17

您似乎没有声明一个User类。

第二个问题是另一个文档错误,您需要在MutableLiveData构造函数调用中提供类型。

所以,这有效:

package com.commonsware.myapplication

import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel

class User

class MainViewModel : ViewModel() {
  private val users: MutableLiveData<List<User>> by lazy {
    MutableLiveData<List<User>>().also {
      loadUsers()
    }
  }

  fun getUsers(): LiveData<List<User>> {
    return users
  }

  private fun loadUsers() {
    // Do an asynchronous operation to fetch users.
  }
}
Run Code Online (Sandbox Code Playgroud)

考虑到这是一个官方示例,这很奇怪。

通常,将它们视为一种技术的说明,不一定是您将复制并粘贴到项目中的内容。

  • 期望文档正确并不乐观(这更多地说明了谷歌的文档质量,而不是发布者的不合理期望)。让我们善待那些有疑问的人,因为这毕竟是 Stack Overflow 的全部意义所在 (11认同)