일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- viewholder
- 구분선
- 고차함수
- 리사이클러뷰
- Android
- 스와이프
- Fragment에서 Activity의 함수 사용하기
- IntentTestRule
- 안드로이드
- 안드로이드스튜디오
- 코틀린
- ui test
- adapter
- ActivityTestRule
- 테마 아이콘
- 생명주기
- Error:Execution failed for task ':app:mergeDebugResources'
- 안드로이드개발레벨업교과서
- espresso
- LayoutManger
- searchview
- binding adapter
- 재사용
- high order function
- 뷰변경 감지
- 안드로이드13
- 코딜리티
- fragment
- recyclerview
- Fragment 수동 추가
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
https://blog.kmkonline.co.id/automate-your-android-app-bundle-publishing-using-jenkins-382a79786402 Automate Your Android App Bundle Publishing using Jenkins As the software development team grows, we have to always keep an eye of what we could improve to make the process more efficient. In this… blog.kmkonline.co.id
https://proandroiddev.com/simplifying-the-fragmentmanager-api-multiple-fragment-backstacks-on-android-9b64ddb0d654 Simplifying the FragmentManager API: Multiple Fragment backstacks on Android Fragments in Android are many things to different people. View controllers, state containers, callback hooks to system events like… proandroiddev.com
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..