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
- Navigation
- notification
- CustomView
- recyclerview
- hilt
- Coroutine
- lifecycle
- onMeasure
- BOJ
- DataBinding
- View
- CoordinatorLayout
- activity
- Algorithm
- 안드로이드
- sqlite
- onLayout
- Android
- 알림
- 백준
- HTTP
- Behavior
- CollapsingToolbarLayout
- AppBarLayout
- room
- 코틀린
- ViewModel
- 알고리즘
- LiveData
- kotlin
Archives
- Today
- Total
목록addAction (1)
개발일지
Android in A..Z - Notification (Action)
Notification Action 알림을 빠르게 대응할 수 있도록 알림을 탭했을 때 작업을 추가 하거나 최대 3개의 Action을 추가할 수 있다. setContentIntent 알림을 탭 했을 때 PendingIntent를 통해 작업을 정할 수 있다. private fun createPendingIntent(message: Message): PendingIntent { return NavDeepLinkBuilder(context) .setGraph(R.navigation.navigation_main) .setDestination(R.id.actionFragment) .setArguments( Bundle().apply { putSerializable("message", message) } ) .cre..
Android (안드로이드)/Notification
2021. 7. 15. 15:32