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 | 31 |
Tags
- activity
- 안드로이드
- recyclerview
- kotlin
- Navigation
- LiveData
- sqlite
- Behavior
- hilt
- Algorithm
- AppBarLayout
- 코틀린
- onMeasure
- DataBinding
- Android
- HTTP
- View
- room
- CustomView
- CoordinatorLayout
- CollapsingToolbarLayout
- ViewModel
- 알림
- Coroutine
- notification
- lifecycle
- BOJ
- 알고리즘
- 백준
- onLayout
Archives
- Today
- Total
목록그룹 (1)
개발일지
Android in A..Z - Notification (Group)
그룹 Android 7.0(API 24)부터는 관련된 알림을 그룹으로 표시할 수 있습니다. 예를 들어, 앱에서 수신된 이메일의 알림을 표시하려면 모든 알림을 동일한 그룹에 포함하여 함께 축소할 수 있도록 해야 합니다. Android에서 기본적으로 그룹을 지정하지 않은 경우 4개 이상의 알림을 자동으로 그룹화 합니다. Notification 만들기 Notification을 만들 때 setGroup을 통해 그룹을 정해줍니다. val notification = NotificationCompat.Builder(context, CHANNEL_ID) .setSmallIcon(R.drawable.ic_android) .setContentTitle(message.title) .setContentText(message...
Android (안드로이드)/Notification
2021. 7. 15. 16:33