android 控件注入,android – 如何使用Dagger 2将多个组件注入同一个对象

对于任何无法解决这个问题的人来说,一个组件必须为对象提供所有依赖关系.所以在我的情况下,我必须使FileManagerComponent成为一个子组件,并将“.plus()”与我的AppComponent一起使用,或者让它依赖于AppComponent,让AppComponent通过Context context()来暴露Context下游;允许依赖于它的组件可以访问其拥有的上下文的方法.

例如:

@Singleton

@Component(modules = {NetworkModule.class,AndroidModule.class})

public interface ApplicationComponent {

FileManagerComponent plus(FileManagerModule module);

}

@Subcomponent(modules = {FileManagerModule.class})

public interface FileManagerComponent {

void injectMyActivity(MyFileManagingActivity activity);

}

你会像这样使用它(在MyFileManagingActivity中):

FileManagerComponent fmc = applicationComponent.plus(new FileManagerModule());

fmc.injectMyActivity(this);

或者,如果您不想使用这样的子组件:

@Singleton

@Component(modules = {NetworkModule.class,AndroidModule.class})

public interface ApplicationComponent {

Context context();

File applicationRootDirectory();

}

// Notice this is ALSO a Component

@Component(modules = {FileManagerModule.class},dependencies = ApplicationComponent.class)

public interface FileManagerComponent {

void inject(MyFileManagerActivity activity);

}

现在,您必须构建依赖于app组件的组件.

FileManagerComponent fmc = DaggerFileManagerComponent.builder()

.applicationComponent(appComponent)

.fileManagerModule(new FileManagerModule())

.build();

fmc.inject(this);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值