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

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