Hi guys,
I've been trying to integrate NB6 into my app, but I'm having some trouble generating multiple notifications of the same type from the same app. I try to generate multiple notifications of the simple type.
So running through this couple of lines multiple times, with different strings as parameters:
But only the last notification of a sequence is shown, all other notifications disappear.
What am I doing wrong?
I've been trying to integrate NB6 into my app, but I'm having some trouble generating multiple notifications of the same type from the same app. I try to generate multiple notifications of the simple type.
So running through this couple of lines multiple times, with different strings as parameters:
B4X:
Dim n As NB6
n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(smiley)
n.Build("Title", "Content", "tag1", Me).Notify(4) 'It will be Main (or any other activity) instead of Me if called from a service.
But only the last notification of a sequence is shown, all other notifications disappear.
What am I doing wrong?