일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- DataBinding
- 안드로이드
- hilt
- Navigation
- CustomView
- room
- onLayout
- 알고리즘
- lifecycle
- onMeasure
- kotlin
- 코틀린
- AppBarLayout
- 알림
- BOJ
- ViewModel
- View
- sqlite
- Coroutine
- Behavior
- activity
- recyclerview
- Android
- CoordinatorLayout
- HTTP
- Algorithm
- LiveData
- CollapsingToolbarLayout
- notification
- Today
- Total
목록이미지 (2)
개발일지
확장형 알림 기존의 알림보다 훨씬 많은 알림을 제공하기 위해 확장형 알림을 사용할 수 있다. 코드 @Singleton class ExtendNotificationManager @Inject constructor( @ApplicationContext private val context: Context ) { companion object { private const val CHANNEL_ID_IMPORTANCE_HIGH = "com.taetae98.notification.EXTEND.IMPORTANCE_HIGH" private const val CHANNEL_ID_IMPORTANCE_LOW = "com.taetae98.notification.EXTEND.IMPORTANCE_LOW" private const..
Glide Android에서 Image를 빠르게 불러오기 위한 라이브러리다. 기본적으로 이미지, GIF를 불러올 수 있고, 에러처리, 디스크 캐쉬등 다양한 기능을 제공한다. Glide의 원칙은 어떠한 이미지도 빠르고 부드럽게 불러오는 것을 목표로 한다. Dependency ext { glide_version = "4.12.0" } dependencies { // Glide implementation "com.github.bumptech.glide:glide:$glide_version" annotationProcessor "com.github.bumptech.glide:compiler:$glide_version" } github.com/bumptech/glidebumptech.github.io/glide/..