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 |
Tags
- CustomView
- 알고리즘
- room
- notification
- Coroutine
- 코틀린
- onLayout
- Behavior
- BOJ
- activity
- ViewModel
- lifecycle
- recyclerview
- View
- 알림
- hilt
- Navigation
- sqlite
- Algorithm
- kotlin
- AppBarLayout
- DataBinding
- LiveData
- 안드로이드
- CollapsingToolbarLayout
- Android
- CoordinatorLayout
- HTTP
- onMeasure
- 백준
Archives
- Today
- Total
목록setGroup (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