Notification Click not launch the given Activity on Nexus Phones

后端 未结 9 946
一个人的身影
一个人的身影 2020-12-08 14:59

I am using this code to show the local notification and When notification comes then on click of notification want to launch the ListActivity but on Google nexus device

9条回答
  •  萌比男神i
    2020-12-08 15:57

    You can also add PendingIntent.FLAG_ONE_SHOT to fix this.

    PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0,
                            PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);
    

提交回复
热议问题