My App uses AlarmManager along with NotificationManager to post Notifications when the app is in the background or closed. In PlayBook simulator it pops up a message containing the custom icon and message configured in the Notification object. When I open the app by clicking on the notification I receive an Intent (calling getIntent on onCreate if the app is closed, or onNewIntent() if the activity is already running) with information I can use to perform an action. However on BlackBerry 10 simulator all that happens is the App's icon get a little badge, without any information, and nothing is passed along to the app when opened. Is this the intended behavior? The user is left wondering what triggered the notification.
Asked
Active
Viewed 795 times
0

Michael Donohue
- 11,776
- 5
- 31
- 44

Rafael Nobre
- 5,062
- 40
- 40
-
possible duplicate of [Unsupported Intents on BlackBerry Android Runtime](http://stackoverflow.com/questions/13823295/unsupported-intents-on-blackberry-android-runtime) – Mister Smith Dec 11 '12 at 16:35
-
What does Notifications have to do with Intents ? Its not a duplicate. – Rafael Nobre Dec 11 '12 at 16:36
-
You spawned 2 questions that are essentially the same in a 4 minutes interval. I've flagged this since the other one is more elaborated. You might want to merge them in one single question. – Mister Smith Dec 11 '12 at 16:39
-
I'm sorry, I really think you didn't read them properly. This one is the inability of the BB10 Simulator to show Notifications posted with NotificationManager. The other is about starting activities with common data sharing/acquiring Intents. I really can't see them as essentially the same. – Rafael Nobre Dec 11 '12 at 16:54
1 Answers
1
I received a response from BlackBerry team regarding this issue, this is still not supported on the Simulator:
"For BlackBerry 10 the user would see their notifications in the BlackBerry Hub area. So they would be able to take action on the notification or delete it etc. Unfortunately you won't be able to see that just yet within the simulator. But if you are seeing the notification splat on the app icon, the notification would show in the BlackBerry Hub correctly."

Rafael Nobre
- 5,062
- 40
- 40