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