13

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

本节导致问题:

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

预览给了我这个错误:

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

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

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

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

4

1 回答 1

19

您似乎没有声明一个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.
  }
}

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

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

于 2020-07-11T22:20:59.940 回答