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