- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试在我的 Android 项目中使用 Dagger 2。对于初学者,我想使用两个组件分别负责注入(inject)应用程序范围和 Activity 范围的依赖项。作为基本引用,除其他外,我使用了 this answer .
因此有两种不同的方式来设置组件之间的关系:使用@Subcomponent
注释和使用dependencies
参数。
AppContextComponent
工作正常。但是,一旦我尝试从 ActivityContextComponent
注入(inject)依赖项,我就会收到此构建时错误:Error:com.example.ui.activity.MainActivity cannot be provided without an @Inject constructor or from an @Provides- or @Produces-annotated method.
知道我确实有提供方法,坦率地说,这条错误消息没有用。这是我设法用谷歌搜索出的此错误的其他几个可能来源,但它们似乎并非如此:
Context
的方法,问题仍然存在)。以下代码是使用 Kotlin 编写的,但我认为它应该非常简单。
应用组件
object AppContext {
// a singleton used in place of a Java static field
@JvmStatic lateinit var graph: AppContextComponent
}
@ApplicationScope @Component(modules = arrayOf(AppContextModule::class))
interface AppContextComponent {
fun inject(fragment: BaseFragment)
fun newActivityContextComponent(module: ActivityContextModule): ActivityContextComponent
}
@Module
class AppContextModule(val app: MyApplication) {
@Provides @ApplicationScope @ForApplication
fun provideContext(): Context {
return app;
}
@Provides @ApplicationScope
fun provideMyApplicationContext(): MyApplication {
return app;
}
}
Activity 组件
object ActivityContext {
@JvmStatic lateinit var graph: ActivityContextComponent
}
@ActivityScope @Subcomponent(modules = arrayOf(ActivityContextModule::class))
interface ActivityContextComponent {
fun inject(fragment: BaseFragment)
}
@Module
class ActivityContextModule(val activity: MainActivity) {
// Worth pointing out is that the provision methods are not used.
// That is, no code is being generated for them.
@Provides @ActivityScope @ForActivity
fun provideContext(): Context {
return activity;
}
@Provides @ActivityScope
fun provideMainActivityContext(): MainActivity {
return activity;
}
}
下面是这些组件的使用方式。
申请
class MyApplication : SugarApp() {
override fun onCreate() {
super.onCreate()
AppContext.graph =
DaggerAppContextComponent
.builder()
.appContextModule(AppContextModule(this))
.build()
}
}
Activity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
ActivityContext.graph =
AppContext.graph
.newActivityContextComponent(ActivityContextModule(this))
}
}
BaseFragment(实际注入(inject)发生的地方)
abstract class BaseFragment : Fragment() {
// works fine
@Inject @ForApplication lateinit var myApplication: MyApplication
// fails with "cannot be provided" error
@Inject @ForActivity lateinit var myActivity: MainActivity
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
ActivityContext.graph.inject(this)
}
}
我错过了什么?
谢谢!
最佳答案
编辑
要点是:
如果您使用 dagger 的 @Subcomponent
,请确保您在父级 @Component
中没有注入(inject)与您的子组件相同的目标类的方法.
Dagger 会感到困惑,并会尝试生成代码以直接从父组件注入(inject)到目标中,但它没有所需的模块来满足注入(inject)的依赖性。
关于android - Dagger 2 错误 : dependency “cannot be provided without an @Inject constructor” ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37225960/
正在复制的问题是,当sew呈现登录页面时,然后我们继续执行身份验证,现在将我们重定向到网站的仪表板,此时我们继续关闭会话,并且在之前的交互中生成的这些cookie没有被删除。这个问题是重复性的,并且一
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我正在使用 Angular2 开发一个应用程序。 我正在尝试在我的应用程序中使用 Reactive Forms,但我遇到了一些错误: 第一个错误是关于 NgControl 的,如下所示: No pro
最近很多用户在使用电脑的时候发现了wmi provider host进程占用内存比较大,不知道这个进程到底是干什么的,能不能禁止,怎么禁止。下面来一起看看想想的介绍吧。 wmi provide
我的问题是: 当我在设计时不知道这些表达式的数量和类型时,如何将列表中的表达式拼接成一个引用? 在底部,我包含了类型提供程序的完整代码。 (我已经剥离了这个概念来证明这个问题。)我的问题出现在这些行:
我目前正在学习使用 Flutter 进行应用程序开发,并已开始学习 Provider 包。我遇到了一些困难并收到错误: “在此...小部件之上找不到正确的提供者” 我最终移动了 Provider 小部
我是 android 的新手,我正在学习如何使用 JavaMail API 发送电子邮件的教程,我已经正确添加了必要的 Jar,但我总是遇到无法解析 GmailSender 类上的符号提供程序,我尝试
我正在我的 Angular 应用程序中进行单元测试,我正在使用 TestBed 方法, 我正在测试组件,所以每个规范文件看起来像这样 import... describe('AppComponent'
enter image description here 代码:这是我的 index.js 文件 index.js import { Provider } from "react-redux"
Microsoft ASP.NET Universal Providers 1.1昨天与System.Web.Providers 1.2一起发布.在后面的 nuget 页面上声明:Legacy pac
在我的 Next js 项目中,我使用了 Next auth,其中 import {Provider} from 'next-auth/client' , 并包裹 在 _app.js 中。 但是,与此
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
更新 - 我实际上发现它是 Flutter Issue . 我有两个 Provider,一个是 EntriesProvider,另一个是 EntryProvider。我在创建条目时使用我的 Entry
function configure($provide, $injector) { $provide.provider("testservice", function () {
这真让我抓狂。我似乎无法弄清楚这有什么问题。 代码: public interface IMinutesCounter { void startTimer(); void stopTi
我在我的项目中玩 Dagger 2,然后我陷入了这个错误编译。-> Error:(18, 21) error: ....MyManager cannot be provided without an
我有一个 Resteasy 应用程序,它使用 Spring 并包含 ContainerRequestFilter 和 ContainerResponseFilter 实现,并用 @Provider 注
我正在尝试使用 Dagger2 设置一个新项目,我以前使用过 Dagger2,但现在我正在尝试自己从头开始设置它。我正在从我参与的 Kotlin 项目中获取示例,但无法像现在在 Kotlin 中一样为
我刚开始学习 dagger2,遇到了一个奇怪的问题,在我看来像是一个错误。这是模块: @Module public class SimpleModule { @Provides Coo
我是一名优秀的程序员,十分优秀!