How to use Java and Kotlin together in android 1. Download Kotlin plugin 2. Add dependencies of "kotlin-gradle-plugin" in build.gradle (Project lev…
Read more »How to separate string data by sentences When I am developing android app using Kotlin, I had to separate string data by one sentence. There might be so many s…
Read more »코틀린(Kotlin) 제네릭(Generic) 파헤치기 코틀린 공식문서 를 번역하면서 공부 중이다... 오늘은 Generic에 대해서 공부하려고한다. 1. Generics : in, out, where Kotlin에서 클래스들은 JAVA에서처럼 타입 파라미터를 가질 수 있다. clas…
Read more »Kotlin Inline classes 공식문서 번역 오늘은 코틀린 인라인 클래스(Inline class)에 대해서 알아보자. 개발공부는 항상 공식문서를 기준으로 시작한다. 코틀린 공식홈페이지 에서 문서를 번역한 것을 기본으로 한다. …
Read more »안드로이드 코루틴 callback flow 예제 및 사용법 회사에서 프로젝트를 하면서 몇 초 단위로 DB에 직접 데이터를 호출하는 프로젝트가 있었다. 처음에는 라이브데이터로 결과값을 받아와서 UI에 나타내주었지만 고객사에서 최대한 실시간으로 데이터를 보여주길 원했다. 이럴 경우, 라이…
Read more »