Hello,
I am trying to show my icon's app in the notification bar of my app, but It does not appear. Only appear a gray circle.
It is a 72X72 pixels icon. I choose it in the "Poyect"--> Choose icon in the B4A tab.
I have tried put the file "read only" permison in the "\Objects\res\drawable" file, but when I do it, the icon of my app disapear.
This is my code:
Please, help.
I am trying to show my icon's app in the notification bar of my app, but It does not appear. Only appear a gray circle.
It is a 72X72 pixels icon. I choose it in the "Poyect"--> Choose icon in the B4A tab.
I have tried put the file "read only" permison in the "\Objects\res\drawable" file, but when I do it, the icon of my app disapear.
This is my code:
B4X:
Dim n As Notification
n.Initialize
n.Icon ="icon"
n.Sound=True
n.SetInfo(Message.GetData.Get("title"), men, Main)
n.Notify(1)
Please, help.