Notification Click not launch the given Activity on Nexus Phones

后端 未结 9 932
一个人的身影
一个人的身影 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条回答
  •  一生所求
    2020-12-08 15:39

    This is reported issue for kitkat 4.4 not opening activity when click on notification here is an issue url

    http://code.google.com/p/android/issues/detail?id=63236

    http://code.google.com/p/android/issues/detail?id=61850

    suggested workaround is to cancel existing PendingIntent, or use PendingIntent.FLAG_CANCEL_CURRENT

    OR

    Try below

    Adding a flag in Activity in AndroidManifiest.xml

    android:exported="true"
    

提交回复
热议问题