일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- fragment
- 안드로이드스튜디오
- high order function
- 안드로이드
- 안드로이드개발레벨업교과서
- adapter
- 테마 아이콘
- 고차함수
- 안드로이드13
- Android
- LayoutManger
- 생명주기
- ActivityTestRule
- 구분선
- 코딜리티
- 스와이프
- 코틀린
- searchview
- 재사용
- Error:Execution failed for task ':app:mergeDebugResources'
- IntentTestRule
- 리사이클러뷰
- viewholder
- espresso
- Fragment 수동 추가
- 뷰변경 감지
- ui test
- recyclerview
- Fragment에서 Activity의 함수 사용하기
- binding adapter
Archives
- Today
- Total
룬아님의 취중코딩
(Dagger2) Service에서 dagger 사용하기 본문
1. 서비스에 주입할 모듈 작성
@Module
abstract class ServiceBuilderModule {
@ContributesAndroidInjector
abstract MyService contributeMyService();
}
2. Application Component에 모듈 등록
@Component(modules = {
AndroidSupportInjectionModule.class,
AppModule.class,
ActivityBuilderModule.class,
ServiceBuilderModule.class
})
@Singleton
public interface AppComponent {
@Component.Builder
interface Builder {
@BindsInstance
Builder application(App application);
AppComponent build();
}
void inject(App app);
}
3. onCreate에서 AndroidInjection.inject(this) 호출
public class MyService extends Service {
@Inject
InjectClass injectClass;
@Override
public void onCreate() {
AndroidInjection.inject(this);
super.onCreate();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
BottomSheetDialogFragment에 argument 넘기는 방법 (0) | 2020.01.16 |
---|---|
java.lang.IllegalArgumentException: baseUrl must end in / (1) | 2020.01.07 |
EditText cursor 색상 바꾸는 방법 (0) | 2019.12.30 |
Databinding에서 view Id 사용하기 (0) | 2019.12.29 |
Databinding에서 logical operator 사용하기 (0) | 2019.12.29 |
Comments