일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 재사용
- 뷰변경 감지
- Fragment에서 Activity의 함수 사용하기
- 고차함수
- viewholder
- fragment
- Fragment 수동 추가
- adapter
- Android
- 구분선
- searchview
- espresso
- 안드로이드
- LayoutManger
- 안드로이드13
- ActivityTestRule
- recyclerview
- 코틀린
- 생명주기
- 안드로이드개발레벨업교과서
- ui test
- 코딜리티
- high order function
- Error:Execution failed for task ':app:mergeDebugResources'
- binding adapter
- 테마 아이콘
- 스와이프
- 리사이클러뷰
- IntentTestRule
- 안드로이드스튜디오
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