时间:2021-05-19
本文假设读者已经有一定Dagger2使用经验
使用疑惑
之前工作中一直在使用dagger2进行开发,用起来确实很爽,但是我从我第一次使用我就一直有一个问题或者说疑问(本人才疏学浅脑子不够使),通常情况下我们有如下清单
MyApplication,MyAppComponent,MyAppModule
ActActivity,ActComponent,ActModule
简单解释下,MyAppModule提供全局单例功能,比如打印日志,ActModule提供Activity级别的功能比如发起网络请求(只是举个栗子),现在我们希望在发起网络请求的时候打印日志,那么解决方法也很简单——SubComponent或者Component(dependencies=X.class)
于是我们首先在MyApplication中初始化MyAppcomponent(使用抽象类实现单例)
@Component(modules = MyAppModule.class)public abstract class MyAppComponent { ...... //使用SubComponent功能来完成component的组合 abstract ActComponent plus();}@Subcomponent(modules = ActModule.class)public interface ActComponent { void inject(ActActivity act);}public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); MyAppComponent.getInstance().inject(this); }}然后就是就在Activity中使用ActComponent来提供注入功能,代码看上去就像如下...
MyAppComponent.getInstance() .plus() .inject(this);为神马我使用的明明是ActComponent,关MyAppComponent什么事?(我最开始学习使用dagger2的时候完全无法接受这种写法),而且这似乎不太符合依赖注入的一个根本原则a class shouldn't know anything about how it is injected.
新用法
谷歌爸爸很明显也注意到了这个问题,谁叫Dagger2在Android开发中也那么火呢,于是在Dagger2新版本中我们有了一个新东西dagger.android
Gradle引入方式
Demo地址在 https://github.com/hanliuxin5/Dagger2-demo
结合Demo和官方文档粗略翻译如下
1、在AppComponent中安装AndroidInjectionModule
2.编写实现了AndroidInjector<YourActivity>的Lychee3Activity
@Subcomponent(modules = ...)public interface ActSubComponent extends AndroidInjector<Lychee3Activity> { @Subcomponent.Builder public abstract class Builder extends AndroidInjector.Builder<Lychee3Activity> { }}3.定义了ActSubComponent后,将其安装在绑定了ActSubComponent.Builder的Module中,并且将该Module安装在我们的AppComponent中
@Module(subcomponents = {ActSubComponent.class})public abstract class BuildersModule { @Binds @IntoMap @ActivityKey(Lychee3Activity.class) abstract AndroidInjector.Factory<? extends Activity> lychee3Activity(ActSubComponent.Builder builder); }@Component(modules = {AndroidInjectionModule.class, BuildersModule.class})public interface AppComponent { //....}但是如果你的ActSubComponent若同我们在步骤2中定义的一样,不管在类中还是在其Builder中没有的方法和超类型,你可以用下面的代码跳过2,3步骤
原文 Pro-tip: If your subcomponent and its builder have no other methods or supertypes than the ones mentioned in step #2, you can use @ContributesAndroidInjector to generate them for you
4.让你的MyApplication实现HasActivityInjector,并且注入DispatchingAndroidInjector,
public class MyApplication extends Application implements HasActivityInjector { @Inject DispatchingAndroidInjector<Activity> dispatchingAndroidInjector; @Override public void onCreate() { super.onCreate(); DaggerAppComponent.builder().AppContent(this).build().inject(this);//最好结合demo来看,不然AppContent是啥你不知道 } @Override public AndroidInjector<Activity> activityInjector() { return dispatchingAndroidInjector; }}5.最后,在你Lychee3Activity和Lychee2Activity中的onCreate中,调super.onCreate()之前调用AndroidInjection.inject(this);
public class Lychee2Activity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { AndroidInjection.inject(this); super.onCreate(savedInstanceState); }}至此,新东西的使用差不多就到这了,但是为什么我会有一种“天,怎么越来越复杂啦”的感觉呢...
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
参考文章
https://google.github.io/dagger//android.html
https://android.jlelse.eu/android-and-dagger-2-10-androidinjector-5e9c523679a3
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
AndroidDaggerActivityComponent错误解决办法详解在使用dagger2的过程中,如果修改了某个类的内容,第一次编译运行时总会报错:错误
前言前段时间,公司项目使用到了Dagger2,之前自己倒是听说过Dagger2,但是一直没有去使用,主要是因为入门难度相对于Rxjava,Retrofit要高不
Dagger2是什么?Dagger2是一款基于Java注解,在编译阶段完成依赖注入的开源库,主要用于模块间解耦,方便进行测试。一、KotlinDagger2配置
前言陆陆续续几篇文章已经讲解了项目中Kotlin如何配置、简单语法、DataBinding配置,接下来就要说到Kotlin中的Dagger2了。配置Dagger
详解Android中TableLayout中stretchColumns、shrinkColumns的用法android:stretchColumns="1"a