gpt4 book ai didi

android - ViewModelProviders 实例化失败,因为无法解析 "of"

转载 作者:行者123 更新时间:2023-11-29 18:30:11 30 4
gpt4 key购买 nike

我正在尝试使用 View 模型,但是遇到了一个奇怪的错误,编译器说它无法识别“of”。我已经在我的 build.gradle 中导入了依赖项并像这样同步

 def ver = "1.1.1"
implementation "android.arch.lifecycle:extensions:$ver"

我确保它在我的 Activity 中正确导入并实例化。不知道该怎么做

import android.arch.lifecycle.ViewModelProviders;


//private BattleRhythmViewModel battleModel;
battleModel = new ViewModelProviders.of(this).get(BattleRhythmViewModel.class);

最佳答案

使用ViewModelProviders.of(this).get(BattleRhythmViewModel.class)

of 是一个静态方法。当您调用 new ViewModelProviders.of(this) 时,您试图使用构造函数创建 ViewModelProviders 的新实例,但您从未使用 () 调用构造函数

关于android - ViewModelProviders 实例化失败,因为无法解析 "of",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56703851/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com