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

retrofit2를 사용할 때 https://{host}/api/v1/~ 이런 형식의 baseUrl을 사용할 수도 있다. 이때 baseUrl에 '/'를 넣어야 하는지 안넣어도 되는지를 알아야한다. 해당 에러의 경우에는 baseUrl 뒤에 '/'를 넣어주는 것만으로 해결이 되지만 위의 그림을 보고 '/'를 넣고 안넣고에 따라 url이 어떻게 변하는지 알아야 할 필요가 있다.
https://thdev.tech/androiddev/2018/08/05/Android-Architecture-Components-ViewModel-Inject/ Android Architecture Components ViewModel을 간단하게 초기화 하려면? | I’m an Android Developer. thdev.tech
https://medium.com/@er.ankitbisht/mvvm-model-view-viewmodel-kotlin-google-jetpack-f02ec7754854 MVVM (Model View ViewModel) + Kotlin + Google Jetpack Today, we are going to learn how we can develop an Android app using MVVM architecture. This post will be based on the Android… medium.com
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 { @BindsInstan..