Notification Text Update
처음에 Notification 에 특정 메세지를 실어서 보낸 후, 해당 Notification 에 텍스트를 갱신(update) 를 하기를 원할 경우에는 이미 사용했던 Notification Builder 를 다시 notify() 해야 합니다.
Issue : https://stackoverflow.com/q/14885368/3897810
solution : https://stackoverflow.com/a/16435330/3897810
저같은 경우는 startForeground() 를 사용해서 Notification 을 보냈기 때문에, 동일한 ID 와 Builder 를 통해서 startForeground() 를 사용해서 텍스트를 갱신했습니다.
startForeground(1, builder.build());
반응형
'Dev > Android' 카테고리의 다른 글
간단 기록 - AndroidX Core Dependency (0) | 2019.06.11 |
---|---|
Android 화면 레코딩 방법 - MediaRecorder (0) | 2019.06.10 |
Android Pie(9버전) 에서 Google Map 을 사용할 경우 만나는 에러 (0) | 2019.03.11 |
GoogleMap Marker 설정 - 현재위치 Icon 설정 (0) | 2019.02.20 |
레이아웃 그림자 - Layout Shadow Drawable (0) | 2019.02.13 |