Clicking on notification doesn't open mentioned activity

后端 未结 10 1159
感动是毒
感动是毒 2020-12-09 16:26

I am trying to open an Activity when the notification is clicked and below is my code.

Intent intent = new Intent(this.getApplicationContext(),         


        
10条回答
  •  爱一瞬间的悲伤
    2020-12-09 16:47

    You can specify any Activity to be receiver for push notifications:

    
        
        
    
    

    This intent filter for the activity specifies which activity will be launched in response to push notification (PACKAGE_NAME is your Android app package)

    So you can add this intent filter in your Activity which you want to open on the click of Push notification.

提交回复
热议问题