문제 상황
Notification을 클릭하면 Intent에 담긴 Extra의 url을 웹뷰로 띄우는 작업이다.
Intent로 전달하는 url을 바꾸어도 이전 url이 계속 로드되는 현상이 발생했다.
해결
pending intent의 request code때문이었다.
PendingIntent.getActivity(this, 1, intent, PendingIntent.FLAG_CANCEL_CURRENT or PendingIntent.FLAG_IMMUTABLE)
request code인 2번째 파라미터 값을 변경해주면 된다.
'Programming > 플랫폼' 카테고리의 다른 글
Android12 Pending Intent, Foreground Service 변경사항 (0) | 2023.04.17 |
---|---|
[Andriod] Webview 안에서 Push Notification으로 페이지 로드하기 (0) | 2023.03.06 |
[Android] ASyncTask Scope (0) | 2023.03.04 |
[Android] SDK 25 (AOS7.1) 이하에서 알림 안보임 문제 해결 (0) | 2023.03.03 |
[Android] Constraint Layout (0) | 2023.03.03 |