일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스와이프
- adapter
- 코틀린
- 고차함수
- espresso
- LayoutManger
- Fragment 수동 추가
- recyclerview
- Android
- Fragment에서 Activity의 함수 사용하기
- binding adapter
- Error:Execution failed for task ':app:mergeDebugResources'
- ActivityTestRule
- 안드로이드13
- fragment
- ui test
- 코딜리티
- high order function
- IntentTestRule
- 안드로이드스튜디오
- 뷰변경 감지
- 안드로이드개발레벨업교과서
- viewholder
- 생명주기
- searchview
- 구분선
- 리사이클러뷰
- 테마 아이콘
- 재사용
- 안드로이드
- Today
- Total
목록개발/안드로이드 개발 (101)
룬아님의 취중코딩
2019/11/08 - [개발/안드로이드 개발] - Android Navigation component 사용해보기
https://youtu.be/Y0Cs2MQxyIs #안드로이드 스튜디오에서 Navigation을 활용하기 위해서는 안드로이드 스튜디오 버전이 3.3혹은 그 이상이여야 합니다. 1. build.gradle 추가 dependencies { def nav_version = "2.1.0-rc01" // Java implementation "androidx.navigation:navigation-fragment:$nav_version" implementation "androidx.navigation:navigation-ui:$nav_version" // Kotlin implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" implemen..
https://stackoverflow.com/questions/50226081/android-data-binding-library-vs-kotlin-android-extensions Android Data Binding Library vs Kotlin Android Extensions I'm reading about how the MVVM architecture works and how to use Android Data Binding Library help. In a very general way I understand that Android Data Binding creates a link between UI layer and... stackoverflow.com 데이터 바인딩과 코틀린을 사용하면 ..
interface GitHubAPI { @GET("/search/repositories") suspend fun searchRepositories(@Query("q") searchKeyWord: String): RepositoriesResponse @GET("repos/{repoUrl}") suspend fun getRepositoryInfo(@Path("repoUrl", encoded = true) repoUrl: String): Repository @GET("users/{id}") suspend fun getUserInfo(@Path("id") userUrl: String): Owner } private const val BASE_URL = "https://api.github.com" private..