일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ui test
- 구분선
- Fragment에서 Activity의 함수 사용하기
- Error:Execution failed for task ':app:mergeDebugResources'
- Fragment 수동 추가
- viewholder
- 코딜리티
- IntentTestRule
- 안드로이드개발레벨업교과서
- 뷰변경 감지
- 스와이프
- ActivityTestRule
- Android
- espresso
- adapter
- fragment
- searchview
- 코틀린
- 안드로이드
- high order function
- LayoutManger
- 안드로이드스튜디오
- 고차함수
- 생명주기
- 재사용
- binding adapter
- 테마 아이콘
- 안드로이드13
- 리사이클러뷰
- recyclerview
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
CommonPrimeDivisors A prime is a positive integer X that has exactly two distinct divisors: 1 and X. The first few prime integers are 2, 3, 5, 7, 11 and 13. A prime D is called a prime divisor of a positive integer P if there exists a positive integer K such that D * K = P. For example, 2 and 5 are prime divisors of 20. You are given two positive integers N and M. The goal is to check whether th..
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..