일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- kotlin
- View
- CoordinatorLayout
- LiveData
- CollapsingToolbarLayout
- Android
- Algorithm
- recyclerview
- AppBarLayout
- BOJ
- Coroutine
- sqlite
- lifecycle
- HTTP
- Navigation
- Behavior
- 안드로이드
- CustomView
- 코틀린
- 알림
- 백준
- onLayout
- hilt
- activity
- notification
- room
- ViewModel
- onMeasure
- DataBinding
- 알고리즘
- Today
- Total
목록Custom (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화 할 수 ..
Notification Custom 사용자가 직접 Layout을 구성하여 RemoteView를 통해 Nofitication 템플릿을 만들 수 있습니다. * 보통 축소된 Notification은 64dp, 확장된 Notification은 256dp로 제한됩니다. RemoteViews를 만들고setCustomContentView를 통해 적용할 수 있다. * 확장된 CustomContentView는 setCustomBigContentView를 통해 적용할 수 있다. private fun createCustomContentView(): RemoteViews { return RemoteViews(context.packageName, R.layout.notification_content_view).apply { s..