Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- dart
- 안드로이드
- GIT
- Gradle
- 의존성주입
- Github
- image
- 스튜디오
- build
- coroutine
- Retrofit
- 안드로이드 스튜디오
- 안드로이드스튜디오
- Kotlin
- 코루틴
- 웹뷰
- 유튜브
- studio
- 코틀린
- 에러
- 깃헙
- error
- 안스
- 레트로핏
- WebView
- RecyclerView
- MVVM
- Android
- viewpager
- ADB
Archives
- Today
- Total
목록also (1)
코딩하는 일용직 노동자
코틀린 ScopeFunction 종류와 역할
let 객체의 null 체크에 주로 사용. val userName: String? = "" userName?.let { println("userName : $userName") } apply 객체의 생성과 동시에 값을 초기화 할때 주로 사용. val textView = TextView(this).apply { text = "Hello World!!" setOnClickListener{} } run 이미 생성된 객체를 재접근해서 값을 셋팅할때 주로 사용. textView.run { text = "안녕하세요" setOnClickListener{} } with View 에 접근할때 주로 사용. fun ViewHolder.onBindViewHolder() { with(binding){ adapter = this..
안드로이드
2020. 5. 3. 17:30