Rxjava的学习WebView相关Kotlin 学习

使用activityViewModels()或viewModel

2021-12-03  本文已影响0人  提丶米

1、未引入相对应的依赖包

    //viewmodle
    implementation "androidx.activity:activity-ktx:1.2.2"
    implementation "androidx.fragment:fragment-ktx:1.3.3"

2、使用的ViewModel的构造函数可能是有参的,如果仍然使用viewModels()或activityViewModels()进行初始化,并不会报错,但是运行会Crash,提示

java.lang.RuntimeException: Cannot create an instance of class com.ecovacs.showbotdemo.fragment.QaViewModel
 //举个栗子就像这个ViewModel
  class QaViewModel(context:Context) : ViewModel()
上一篇下一篇

猜你喜欢

热点阅读