Pending intent in notification not working

前端 未结 6 1950
感情败类
感情败类 2020-12-02 13:13

Below is my block of code which should open NotificationActivity when the notification is tapped on. But its not working.

private void setNo         


        
6条回答
  •  天命终不由人
    2020-12-02 14:00

    Added the requestid, but the intent was still not opening.

    This is the solution that worked for me:

    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
    

    Setting those flags to clear the activities below the intent activity.

提交回复
热议问题