摘要:本文假設(shè)讀者已經(jīng)有一定使用經(jīng)驗(yàn)使用疑惑之前工作中一直在使用進(jìn)行開發(fā),用起來(lái)確實(shí)很爽,但是我從我第一次使用我就一直有一個(gè)問(wèn)題或者說(shuō)疑問(wèn)本人才疏學(xué)淺腦子不夠使,通常情況下我們有如下清單,,簡(jiǎn)單解釋下,提供全局單例功能,比如打印日志,提供級(jí)別的功
本文假設(shè)讀者已經(jīng)有一定Dagger2使用經(jīng)驗(yàn)
使用疑惑之前工作中一直在使用dagger2進(jìn)行開發(fā),用起來(lái)確實(shí)很爽,但是我從我第一次使用我就一直有一個(gè)問(wèn)題或者說(shuō)疑問(wèn)(本人才疏學(xué)淺腦子不夠使),通常情況下我們有如下清單
MyApplication,MyAppComponent,MyAppModule
ActActivity,ActComponent,ActModule
簡(jiǎn)單解釋下,MyAppModule提供全局單例功能,比如打印日志,ActModule提供Activity級(jí)別的功能比如發(fā)起網(wǎng)絡(luò)請(qǐng)求(只是舉個(gè)栗子),現(xiàn)在我們希望在發(fā)起網(wǎng)絡(luò)請(qǐng)求的時(shí)候打印日志,那么解決方法也很簡(jiǎn)單——SubComponent或者Component(dependencies=X.class)
于是我們首先在MyApplication中初始化MyAppcomponent(使用抽象類實(shí)現(xiàn)單例)
@Component(modules = MyAppModule.class) public abstract class MyAppComponent { ...... //使用SubComponent功能來(lái)完成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來(lái)提供注入功能,代碼看上去就像如下...
MyAppComponent.getInstance() .plus() .inject(this);
為神馬我使用的明明是ActComponent,關(guān)MyAppComponent什么事?(我最開始學(xué)習(xí)使用dagger2的時(shí)候完全無(wú)法接受這種寫法),而且這似乎不太符合依賴注入的一個(gè)根本原則a class shouldn’t know anything about how it is injected.
新用法谷歌爸爸很明顯也注意到了這個(gè)問(wèn)題,誰(shuí)叫Dagger2在Android開發(fā)中也那么火呢,于是在Dagger2新版本中我們有了一個(gè)新東西dagger.android
Gradle引入方式
//dagger2 compile "com.google.dagger:dagger:2.11" compile "com.google.dagger:dagger-android:2.11" compile "com.google.dagger:dagger-android-support:2.11" annotationProcessor "com.google.dagger:dagger-compiler:2.11" annotationProcessor "com.google.dagger:dagger-android-processor:2.11"
Talk is cheap, show me the codeDemo地址在 https://github.com/hanliuxin5...
結(jié)合Demo和官方文檔粗略翻譯如下
在AppComponent中安裝AndroidInjectionModule
@Component(modules = {AndroidInjectionModule.class}) public interface AppComponent { //.... }
2.編寫實(shí)現(xiàn)了AndroidInjector
@Subcomponent(modules = ...) public interface ActSubComponent extends AndroidInjector{ @Subcomponent.Builder public abstract class Builder extends AndroidInjector.Builder { } }
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若同我們?cè)诓襟E2中定義的一樣,不管在類中還是在其Builder中沒有的方法和超類型,你可以用下面的代碼跳過(guò)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
@ContributesAndroidInjector abstract Lychee2Activity lychee2Activity();
4.讓你的MyApplication實(shí)現(xiàn)HasActivityInjector,并且注入DispatchingAndroidInjector,
public class MyApplication extends Application implements HasActivityInjector { @Inject DispatchingAndroidInjectordispatchingAndroidInjector; @Override public void onCreate() { super.onCreate(); DaggerAppComponent.builder().AppContent(this).build().inject(this);//最好結(jié)合demo來(lái)看,不然AppContent是啥你不知道 } @Override public AndroidInjector activityInjector() { return dispatchingAndroidInjector; } }
5.最后,在你Lychee3Activity和Lychee2Activity中的onCreate中,調(diào)super.onCreate()之前調(diào)用AndroidInjection.inject(this);
public class Lychee2Activity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { AndroidInjection.inject(this); super.onCreate(savedInstanceState); } }
至此,新東西的使用差不多就到這了,但是為什么我會(huì)有一種“天,怎么越來(lái)越復(fù)雜啦”的感覺呢...
第一次寫文章,有什么不足的地方或者你覺得很不爽的東西歡迎交流指出。
參考文章
https://google.github.io/dagg...
https://android.jlelse.eu/and...
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/67250.html
摘要:音樂團(tuán)隊(duì)分享數(shù)據(jù)綁定運(yùn)行機(jī)制分析一個(gè)項(xiàng)目搞定所有主流架構(gòu)單元測(cè)試一個(gè)項(xiàng)目搞定所有主流架構(gòu)系列的第二個(gè)項(xiàng)目。代碼開源,展示了的用法,以及如何使用進(jìn)行測(cè)試,還有用框架對(duì)的進(jìn)行單元測(cè)試。 Android 常用三方框架的學(xué)習(xí) Android 常用三方框架的學(xué)習(xí) likfe/eventbus3-intellij-plugin AS 最新可用 eventbus3 插件,歡迎品嘗 簡(jiǎn)單的 MVP 模...
閱讀 433·2019-08-29 12:44
閱讀 3011·2019-08-26 17:49
閱讀 2433·2019-08-26 13:40
閱讀 1185·2019-08-26 13:39
閱讀 3663·2019-08-26 11:59
閱讀 1827·2019-08-26 10:59
閱讀 2465·2019-08-23 18:33
閱讀 2697·2019-08-23 18:30