Dev/Android

안드로이드 - Notification 갱신

healthyryu 2019. 3. 26. 11:44

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());


반응형