How to open fragment page, when pressed a notification in android

前端 未结 5 1736
一整个雨季
一整个雨季 2020-12-04 15:45

I am trying to open a fragment when I press a notification in the notification bar. My app structure is:

  • a base activity with a nav drawer menu
  • so

5条回答
  •  悲哀的现实
    2020-12-04 15:55

    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
                 | Intent.FLAG_ACTIVITY_SINGLE_TOP )
    

    As your intent set Flags: FLAG_ACTIVITY_SINGLE_TOP, "onCreate()" will not be called when the activity has been created, you should receive the params in the method called "onNewIntent()" instead.

提交回复
热议问题