Android Question Simple Notification

GMan

Well-Known Member
Licensed User
Longtime User
Is there any improvement with the issue of transparent images (.png) used in Notifications ?
Until now the transparency dont work 'cause the picture type is Bitmap so the image is displayed as a mask.

B4X:
    Dim n As NB6
    Dim smiley As Bitmap
    smiley.Initialize(File.DirAssets,"transimage.png")
    n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(smiley)
    n.Build("Gestartet","OK", "tag1", Main).Notify(1)
 
Top