Not really sure if this is a bug or a wish.
Notifications on my Android mobile have a black and white icon at the top, but a colored icon in the message (see screenshot):
In B4A, it seems you can only do this:
This makes the icon on top colored as well.
Notifications on my Android mobile have a black and white icon at the top, but a colored icon in the message (see screenshot):
In B4A, it seems you can only do this:
B4X:
Dim n As Notification
n.Initialize
n.Vibrate=False
n.Sound=False
n.Light=False
n.Icon="icon": ' uses 72x72 icon.png (the icon assigned to the app in B4A, seems the only possibility)
n.SetInfo2("Header of the message","Message","","Main")
n.Notify(1)
This makes the icon on top colored as well.