Notification Click not launch the given Activity on Nexus Phones

后端 未结 9 918
一个人的身影
一个人的身影 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:59

    This issue is known for Android Kitkat 4.4 and Lollipop. Please add :

    android:exported="true"
    

    in android manifest inside activity tag which is supposed to be opened after tapping notification from status bar

    0 讨论(0)
  • 2020-12-08 16:02

    The solution proposed by mass has worked for me and it's very simple, no need to change your code:

    In your AndroidManifest.xml add the following attribute to your <activity> tag:

    android:exported="true" 
    

    It has worked in a Samsung Galaxy Young 2 with Android 4.4.2.

    0 讨论(0)
  • 2020-12-08 16:03

    Add android:exported = "true" in the manifest

    <activity
                android:name=".ListActivity"
                android:label="ListActivity"
                android:exported="true">
    </activity>
    

    ListActivity is the activity which will be opened on the notification click.

    0 讨论(0)
提交回复
热议问题