preferenceFragment中ViewModelProviders#of上的类型错误

时间:2018-10-28 13:40:51

标签: android android-preferences android-room android-livedata

我正在使用首选项片段构建一个设置屏幕。单击其中一个视图后,将打开一个其中包含 recyclerView 的对话框。

我想使用 Google体系结构模型从会议室数据库中弹出实时数据

我已将存储库模型视图模型一起使用,从中我将调用我的实时数据对象。< / p>

但是在onCreate方法中,当我调用ViewModelProvide.of(this)时会抛出错误。

  

无法解析(com.example.SettingPreferenceFragment)的方法

代码:

       SettingsViewModel settingsViewModel = ViewModelProviders.of(this).get(SettingsViewModel.class);

如何在首选项片段中使用实时数据?

0 个答案:

没有答案