목록전체 글 (1755)
오늘도 공부
You have two choices:The first and most performant is to use associateBy function that takes two lambdas for generating the key and value, and inlines the creation of the map:val map = friends.associateBy({it.facebookId}, {it.points})The second, less performant, is to use the standard map function to create a list of Pair which can be used by toMap to generate the final map:val map = friends.map..
https://github.com/gkskenftpt/test/blob/master/1.mdhttps://github.com/gkskenftpt/test/blob/master/2.mdhttps://github.com/gkskenftpt/test/blob/master/3.mdhttps://github.com/gkskenftpt/test/blob/master/4.md
https://medium.com/@aristides.papadopoulos/completable-to-single-boolean-in-rxjava2-2cb65cc9b613
http://pluu.github.io/blog/android/droidkaigi/2017/12/30/droidkaigi-location/
https://stackoverflow.com/a/47126127 Fix res/values/styles.xml and Manifest.xml like so:This solution is tested and don't forget to clean and build :Manifest.xmlchange the theme of HomeActivity to : 2. res/values/styles.xml Make all your themes preceeded with Base :styles.xml will be like this :
https://www.tutorialspoint.com/android/android_drag_and_drop.htm
MVI 패턴 기본 설명 (영문)http://hannesdorfmann.com/android/model-view-intent MVI Realm 한글 설명https://academy.realm.io/kr/posts/eric-maxwell-uni-directional-architecture-android-using-realm/ MVI + Clean Architecture boilerplatehttps://github.com/bufferapp/android-clean-architecture-mvi-boilerplate Google TODO MVI +Rxjavahttps://github.com/oldergod/android-architecture/tree/todo-mvi-rxjava
이번에 새로산 페이퍼 프로 ..전자잉크라서 그런지 가독성도 좋고 최고입니다. 추천합니다~
