欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

詳解Dagger2在Android開發(fā)中的新用法

 更新時(shí)間:2017年07月03日 14:17:15   作者:荔枝我大哥  
本篇文章主要介紹了Dagger2在Android開發(fā)中的新用法,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

本文假設(shè)讀者已經(jīng)有一定Dagger2使用經(jīng)驗(yàn)

使用疑惑

之前工作中一直在使用dagger2進(jìn)行開發(fā),用起來確實(shí)很爽,但是我從我第一次使用我就一直有一個(gè)問題或者說疑問(本人才疏學(xué)淺腦子不夠使),通常情況下我們有如下清單

MyApplication,MyAppComponent,MyAppModule
ActActivity,ActComponent,ActModule

簡單解釋下,MyAppModule提供全局單例功能,比如打印日志,ActModule提供Activity級別的功能比如發(fā)起網(wǎng)絡(luò)請求(只是舉個(gè)栗子),現(xiàn)在我們希望在發(fā)起網(wǎng)絡(luò)請求的時(shí)候打印日志,那么解決方法也很簡單——SubComponent或者Component(dependencies=X.class)

于是我們首先在MyApplication中初始化MyAppcomponent(使用抽象類實(shí)現(xiàn)單例)

@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,關(guān)MyAppComponent什么事?(我最開始學(xué)習(xí)使用dagger2的時(shí)候完全無法接受這種寫法),而且這似乎不太符合依賴注入的一個(gè)根本原則a class shouldn't know anything about how it is injected.

新用法

谷歌爸爸很明顯也注意到了這個(gè)問題,誰叫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'

Demo地址在 https://github.com/hanliuxin5/Dagger2-demo

結(jié)合Demo和官方文檔粗略翻譯如下

1、在AppComponent中安裝AndroidInjectionModule

@Component(modules = {AndroidInjectionModule.class})
public interface AppComponent {
 //....
}

2.編寫實(shí)現(xiàn)了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

 @ContributesAndroidInjector
 abstract Lychee2Activity lychee2Activity();

4.讓你的MyApplication實(shí)現(xiàn)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);//最好結(jié)合demo來看,不然AppContent是啥你不知道
 }

 @Override
 public AndroidInjector<Activity> 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);
 }
}

至此,新東西的使用差不多就到這了,但是為什么我會有一種“天,怎么越來越復(fù)雜啦”的感覺呢...

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

參考文章

https://google.github.io/dagger//android.html

https://android.jlelse.eu/android-and-dagger-2-10-androidinjector-5e9c523679a3

相關(guān)文章

  • Android中TextView局部變色功能實(shí)現(xiàn)

    Android中TextView局部變色功能實(shí)現(xiàn)

    這篇文章給大家詳細(xì)講解了一下Android中TextView實(shí)現(xiàn)部分文字不同顏色的功能實(shí)現(xiàn)過程,有這方面需要的朋友們一起學(xué)習(xí)下吧。
    2017-12-12
  • Android ImageView隨手勢變化動態(tài)縮放圖片

    Android ImageView隨手勢變化動態(tài)縮放圖片

    這篇文章主要為大家詳細(xì)介紹了Android ImageView隨手勢變化動態(tài)縮放圖片的相關(guān)資料,感興趣的小伙伴們可以參考一下
    2016-05-05
  • Android獲取屏幕方向及鍵盤狀態(tài)的小例子

    Android獲取屏幕方向及鍵盤狀態(tài)的小例子

    很多開發(fā)Android的網(wǎng)友可能需要判斷當(dāng)前的屏幕方向或鍵盤狀態(tài),下面的代碼可以判斷出橫屏landscape和常規(guī)的portrait縱握方式,如果使用的是G1這樣有QWERTY鍵盤硬件的,還可以判斷屏幕方向以及鍵盤的拉出狀態(tài)。
    2013-05-05
  • Android實(shí)現(xiàn)下載m3u8視頻文件問題解決

    Android實(shí)現(xiàn)下載m3u8視頻文件問題解決

    這篇文章主要介紹了Android實(shí)現(xiàn)下載m3u8視頻文件,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧
    2023-01-01
  • Android開發(fā)技巧之Fragment的懶加載

    Android開發(fā)技巧之Fragment的懶加載

    我們都知道fragment放在viewPager里面,viewpager會幫我們預(yù)先加載一個(gè),但是當(dāng)我們要看fragment里面的內(nèi)容時(shí),我們也許只會去看第一個(gè),不會去看第二個(gè),如果這時(shí)候不去實(shí)現(xiàn)fragment的懶加載的話,就會多余的去加載一些數(shù)據(jù),造成用戶多消耗流量。下面來一起看看吧。
    2016-10-10
  • Android利用Flutter實(shí)現(xiàn)立體旋轉(zhuǎn)效果

    Android利用Flutter實(shí)現(xiàn)立體旋轉(zhuǎn)效果

    本文主要介紹了Flutter繪圖如何使用ImageShader填充圖形,并且利用 Matrix4的三維變換加上動畫實(shí)現(xiàn)了立體旋轉(zhuǎn)的動畫效果,感興趣的可以嘗試一下
    2022-06-06
  • Android面試Intent采用了什么設(shè)計(jì)模式解析

    Android面試Intent采用了什么設(shè)計(jì)模式解析

    這篇文章主要為大家介紹了Android面試Intent采用了什么設(shè)計(jì)模式解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-03-03
  • Android中仿IOS提示框的實(shí)現(xiàn)方法

    Android中仿IOS提示框的實(shí)現(xiàn)方法

    下面小編就為大家分享一篇Android中仿IOS提示框的實(shí)現(xiàn)方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-01-01
  • 理解關(guān)于Android系統(tǒng)中輕量級指針的實(shí)現(xiàn)

    理解關(guān)于Android系統(tǒng)中輕量級指針的實(shí)現(xiàn)

    由于android系統(tǒng)底層的很大的一部分是用C++實(shí)現(xiàn)的,C++的開發(fā)就難免會使用到指針的這個(gè)知識 點(diǎn)。而C++的難點(diǎn)和容易出問題的也在于指針。使用指針出錯(cuò),常常會引發(fā)帶來對項(xiàng)目具有毀滅性的錯(cuò)誤,內(nèi)存泄漏、邏輯錯(cuò)誤、系統(tǒng)崩潰
    2021-10-10
  • Android自定義View實(shí)現(xiàn)跟隨手指移動

    Android自定義View實(shí)現(xiàn)跟隨手指移動

    這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)跟隨手指移動,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-08-08

最新評論