Launch from Notification

JonB

New Member
Licensed User
Longtime User
Can i determine if my application has been launched by clicking on the notification? (I am using the advanced notification lib)

Thanks.

Jon.
 

JonB

New Member
Licensed User
Longtime User
Activity.GetStartingIntent will return the intent that started the activity.

You can attach an arbitrary string to the intent by calling Notification.SetInfo2.

The string will be added as an "extra" with the key: Notification_Tag

Thanks, that works a treat.
 
Upvote 0
Top