When I notify the user, there are times when I want to place a logo in the Notification area (the line at the very top of the screen) but I don't want to put anything in the Notification Drawer that pulls down below it.
This code works fine for when I want to put a notification in the Drawer:
but I have been unable to find a way to only put an Icon in the Notification area. Filling the SetInfo with empty strings still puts the logo in the drawer; setting the OnGoingEvent to False doesn't seem to change anything at all.
Is there a way to put nothing at all in the Notification Drawer and still put a logo at the top of the screen?
This code works fine for when I want to put a notification in the Drawer:
B4X:
nNotify.Initialize
nNotify.Icon = "icon"
nNotify.Sound=False
nNotify.Light=False
nNotify.OnGoingEvent=True
nNotify.SetInfo(Header, Message, "")
nNotify.Notify(1)
Is there a way to put nothing at all in the Notification Drawer and still put a logo at the top of the screen?