android - 关于dagger2的几个问题
ringa_lee
ringa_lee 2017-04-18 09:18:13
0
2
342

Scope:@PerActivity 这个注解是怎么起作用的呢?

@Scope
@Retention(RetentionPolicy.RUNTIME)
    public @interface PerActivity {
}

@PerActivity
@Component(dependencies = ApplicationComponent.class, modules = ActivityModule.class)
public interface ActivityComponent {
    void inject(MainActivity mainActivity);
}
 public ActivityComponent getActivityComponent() {
    if (activityComponent == null) {
        activityComponent = DaggerActivityComponent.builder()
                .activityModule(new ActivityModule(this))
                .applicationComponent(DemoApplication.get(this).getComponent())
                .build();
    }
    return activityComponent;
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    getActivityComponent().inject(this);

    mTvUserInfo = (TextView) findViewById(R.id.tv_user_info);
    mTvAccessToken = (TextView) findViewById(R.id.tv_access_token);
}

ringa_lee
ringa_lee

ringa_lee

全員に返信(2)
大家讲道理

Hello@PerActivitydagger2 のカスタム Scope であり、Component インターフェース、Moduleprovide メソッド、および実装するコンストラクター アノテーション @Inject を持つクラスにアノテーションを付けることができます。この Scope スコープ内のローカル シングルトン。
https://blog.piasy.com//2016/...を参照してください

いいねを押す +0
Ty80

それが PerActivity と呼ばれるか、ActivityScope と呼ばれるかに関係なく、そのスコープは、コンポーネント自体を初期化する人によって決まります。たとえば、例のコンポーネントがアクティビティによって構築されている場合、そのスコープは決まります。自然にそのアクティビティに従います

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート