@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);
}
大家讲道理2017-04-18 09:20:13
你好 @PerActivity
是 dagger2
的自定义 Scope
,可以注解在 Component
接口、Module
的provide
方法、构造器注解 @Inject
的类 上面,用于实现 此 Scope
範圍內的局部單例。
請參考 https://blog.piasy.com//2016/...
PHP中文网2017-04-18 09:20:13
和註解叫什麼名字無關 不管叫PerActivity還是ActivityScope. 他作用域是由你的Component本身由誰初始化決定的.比如你這個例子 的Component由Activity來build的 它作用域自然隨該activity了