일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BOJ
- onMeasure
- hilt
- Behavior
- Algorithm
- CustomView
- CoordinatorLayout
- activity
- room
- onLayout
- CollapsingToolbarLayout
- 알림
- sqlite
- 안드로이드
- kotlin
- Navigation
- Android
- View
- LiveData
- ViewModel
- DataBinding
- notification
- 코틀린
- HTTP
- lifecycle
- recyclerview
- 백준
- AppBarLayout
- 알고리즘
- Coroutine
- Today
- Total
목록image (2)
개발일지
Glide 인터넷에 있는 이미지를 쉽게 처리할 수 있는 라이브러리다. 또한 대체 이미지, 에러 처리, 캐쉬 등 다양한 기능을 지원한다. https://rkdxowhd98.tistory.com/63 Android in A..Z - Glide Glide Android에서 Image를 빠르게 불러오기 위한 라이브러리다. 기본적으로 이미지, GIF를 불러올 수 있고, 에러처리, 디스크 캐쉬등 다양한 기능을 제공한다. Glide의 원칙은 어떠한 이미지도 빠르고 rkdxowhd98.tistory.com Header Image를 Request할 때 헤더가 필요할 수도 있다. 그럴 경우 Glide에서 Header 기능을 사용하여 추가할 수 있다. CustomTarget 완료했을 때 처리할 방법을 Custom화 할 수 ..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/l1duH/btq9CuTjdWR/n8t7INEO0obTPBgYv8ugLK/img.png)
확장형 알림 기존의 알림보다 훨씬 많은 알림을 제공하기 위해 확장형 알림을 사용할 수 있다. 코드 @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..