- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将项目迁移到 Hilt,但面临以下问题,不确定如何通过 Hilt 传递上下文。如果我删除 provideContext
方法然后它提示以下错误:
error: [Dagger/MissingBinding] @dagger.hilt.android.qualifiers.ApplicationContext android.content.Context cannot be provided without an @Provides-annotated method.
但我的理解是,在 Hilt 我们不需要
provideContext
方法,我们可以使用
@ApplicationContext
如下所示:
@Inject
public CardLayoutManager(@ApplicationContext Context context) {
mContext = context;
}
我错过了什么吗?
最佳答案
您需要正确注释构造函数:
class CardLayoutManager @Inject constructor(@ApplicationContext val context: Context) {
}
关于android - 如何为 Hilt Android 提供上下文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66225427/
要添加 Hilt 模块,您需要执行以下操作: @Module @InstallIn(SingletonComponent::class) abstract class MyModule{ ... }
我收到这个 gradle 同步错误 - 应用了 Hilt Android Gradle 插件,但未找到 com.google.dagger:hilt-android 依赖项。 有人可以帮忙吗? :)
我最近一直在尝试将我的 Android 应用程序从 Dagger 迁移到 Hilt。 我想分阶段进行整个迁移,因此试图抑制不使用 @InstallIn 模块的 Hilt 警告。 一直遵循此处给出的迁移
我收到错误消息“已应用 Hilt Android Gradle 插件,但未找到 com.google.dagger:hilt-android-compiler 依赖项。”在构建项目时。 这是我如何将刀
在 Dagger Hilt 查看模型 1.0.0-alpha01 implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-al
我对 Android 刀柄有疑问。 我添加了 hilt 插件。 //build.gradle(:project) buildscript { ext.hilt_version = '2.37'
我正在尝试将刀柄用于包含动态功能的项目。我面临一个我无法完全理解原因的错误。我收到这样的错误: java.lang.ClassCastException: com.social.analysis.Da
美好的一天,我有使用 dagger2 的经验,但我想在 Hilt 中获得一些经验,所以我从演示应用程序开始,将演示从 Dagger2 迁移到 Hilt。在我的 Dagger 应用程序中,我有两个组件
我正在尝试使用 RoomDatabase.Callback() 方法用数据预填充 Room 数据库,并且也成功了。后来我尝试对 Hilt 进行同样的操作,但无法弄清楚如何在 hilt 模块中提供数据库
@Module @InstallIn(SingletonComponent::class) object NetworkModule { @Singleton @Provides
请考虑以下类(class): class MainRepository constructor( private val blogDao: BlogDao, private val b
我的 Android 产品代码充满了安装各种生产实现的 Hilt 模块: @Module @InstallIn(ApplicationComponent.class) public abstract
Cannot create an instance of class com.comp.app.winners.WinnersViewModel Caused by: java.lang.Instan
我开始将 Dagger 应用程序迁移到 Hilt,首先我将 AppComponent 转换为 Hilt 自动生成的 ApplicationComponent。因此我添加了 @InstallIn(App
我试图提供一个常见的 DataStore以便可以在多个地方使用相同的首选项文件,但我收到了有用的错误消息: Cannot find symbol: DaggerMyApplication_HiltCo
该应用一安装即崩溃,并引发上述奇怪的错误。 我已经注释了如下所示的事件及其子片段。 @AndroidEntryPoint class HomeActivity : AppCompatActiv
我正在将 Hilt 用于 DI,并且我有这门课。 class ChatCore @Inject constructor() 这个类需要在fragment中注入(inject),不用将fragment标
我有下一个屏幕: @ExperimentalMaterialApi @Composable fun AccountListScreen( navController: NavControlle
我想注入(inject) viewModelscope,但我做不到。 class PostPageSource @Inject constructor( val repository: MyRepos
我想用 Dagger Hilt 设置两个 Retrofit2 客户端,因为我的应用程序从两个不同的 API 获取信息。但是当我运行我的代码时,会抛出以下异常 -> App_HiltComponents
我是一名优秀的程序员,十分优秀!