Hilt ViewModel没有零参数构造函数


Cannot create an instance of class com.comp.app.winners.WinnersViewModel
Caused by: java.lang.InstantiationException: java.lang.Class<com.comp.app.winners.WinnersViewModel> has no zero argument constructor

使用手柄解析片段上的视图模型时出现错误

// Proj
ext.hilt_version = '2.32-alpha'
ext.lifecycle_version = "2.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// App
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
kapt "com.google.dagger:hilt-compiler:$hilt_version"
implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03"
kapt 'androidx.hilt:hilt-compiler:1.0.0-alpha03'
implementation "androidx.fragment:fragment-ktx:1.1.0"
@HiltAndroidApp
class MyApplication : Application()
@Module
@InstallIn(SingletonComponent::class)
class ApplicationModule {
@Provides
fun provideService(): MyService = MyServiceImpl()
}
@AndroidEntryPoint
class HomeActivity : AppCompatActivity() {
// Fragment is added here
private fun openFragment(fragment: Fragment) =
supportFragmentManager.beginTransaction().apply {
replace(R.id.container, fragment)
addToBackStack(null)
commit()
}
}
@AndroidEntryPoint
class WinnersFragment: Fragment() {
private val viewModel: WinnersViewModel by viewModels()
}
@HiltViewModel
class WinnersViewModel @Inject constructor(
private val service: MyService
) : ViewModel()

还有什么要做的片段吗?我需要以某种方式提供viewModel吗?

注意:这是一个崩溃/运行时错误,而不是编译错误

我的问题与我的ViewModel无关,而是与它被应用到的片段有关。

我的ViewModel看起来像

@HiltViewModel
class MyViewModel @Inject constructor(repository: MyRepository): ViewModel() {

这是正确的,但我仍然得到异常Caused by: java.lang.InstantiationException: java.lang.Class<com.myapp.MyViewModel> has no zero argument constructor

然而,我错过了片段上的AndroidEntryPoint注释。将此添加回为我修复了问题,即

@AndroidEntryPoint
class MyFragment: Fragment() {
private val viewModel: MyViewModel by viewModels()
...
}

如果在使用compose时出现此错误,可能是因为您正在使用NavHostNavHostController。根据官方文件:

如果你的@HiltViewModel注释的ViewModel作用域是导航图,使用hiltViewModel可组合函数,该函数与带有@AndroidEntryPoint注释的片段或活动一起工作。

hiltViewModel是专用的Hilt + Compose导航依赖的一部分:

dependencies {
// 1.0.0-beta01 at time of this writing.
// official docs linked above appear to auto update the version
implementation("androidx.hilt:hilt-navigation-compose:[version]")
}

下面是同一文档中提供的hiltViewModel调用的上下文示例:

// import androidx.hilt.navigation.compose.hiltViewModel
@Composable
fun MyApp() {
NavHost(navController, startDestination = startRoute) {
composable("example") { backStackEntry ->
// Creates a ViewModel from the current BackStackEntry
// Available in the androidx.hilt:hilt-navigation-compose artifact
val exampleViewModel = hiltViewModel<ExampleViewModel>()
ExampleScreen(exampleViewModel)
}
/* ... */
}
}

您需要升级到Fragment 1.2.0或更高版本。

根据Lifecycle 2.2.0发布说明,Hilt在底层使用的新ViewModelProviderapi仅在使用Fragment 1.2.0或更高版本时适用。当使用旧版本的Fragments时,这些api没有连接到Fragments,因此当您使用by viewModels()时,您的Hilt启用的ViewModel工厂不会使用。

你应该升级到片段1.2.5(片段1.2的最后一个版本)。X set)或片段1.3.0,两者都包含使Hilt工作所需的API钩子。

相关内容

  • 没有找到相关文章

最新更新