我有一个应用程序组件和一个依赖组件。应用程序组件声明显式依赖项,依赖组件可以注入这些依赖项。但是,当我有一个我必须使用@Qualifier消除歧义的依赖项时,依赖组件无法注入该依赖项。
这是应用程序组件
@Component(modules = [AppModule::class, SchedulersModule::class, StorageModule::class])
@ApplicationScope
interface AppComponent {
fun inject(app: Application)
/* other stuff omitted for brevity */
val bitmapCache: BitmapCache
@UiScheduler fun uiScheduler(): Scheduler
}
这是调度程序模块:
@Module
class SchedulersModule {
@ApplicationScope
@Provides
@IoScheduler
fun provideIoScheduler(): Scheduler = Schedulers.io()
@ApplicationScope
@Provides
@UiScheduler
fun provideMainThreadScheduler(): Scheduler = AndroidSchedulers.mainThread()
}
这是限定符:
@Qualifier
@Retention(AnnotationRetention.RUNTIME)
annotation class UiScheduler
这是依赖组件:
@Component(
dependencies = [AppComponent::class],
modules = [EditEntryActivityModule::class, ViewModelModule::class]
)
@ActivityScope
interface EditEntryActivityComponent {
fun inject(editEntryActivity: EditEntryActivity)
fun inject(editEntryFragment: EditEntryFragment)
}
这是调度程序在片段中的注入方式:
class EditEntryFragment : Fragment() {
@Inject @UiScheduler lateinit var uiScheduler: Scheduler
/* other stuff */
}
那么为什么依赖组件会注入在父组件中声明的位图缓存,而不是UI调度程序?这是我得到的错误:
error: io.reactivex.Scheduler cannot be provided without an @Provides- or @Produces-annotated method.
io.reactivex.Scheduler is injected at
com.test.edit.EditEntryFragment.uiScheduler
com.test.edit.EditEntryFragment is injected at
com.test.edit.EditEntryActivityComponent.inject(arg0)
1 error
答案 0 :(得分:3)
在EditEntryFragment类中使用@field:UiScheduler
答案 1 :(得分:2)