I have B4A 12.80 and NB6 works well
There is a way for use BigPicture_Notification with BigText_Notification at the same time?
(in the same notification without having two distinct notifications)
I tried this
But not work
There is a way for use BigPicture_Notification with BigText_Notification at the same time?
(in the same notification without having two distinct notifications)
I tried this
BigTextANDBigPicture:
Sub BigPictureANDBigText_Notification
Dim n As NB6
smiley = LoadBitmapResize(File.DirAssets, "smiley2.png", 24dip, 24dip, False)
n.Initialize("default", Application.LabelName, "DEFAULT").SmallIcon(smiley)
Dim b As Bitmap = LoadBitmap(File.DirInternal, "dentista4.png")
n.BigPictureStyle(b.Resize(256dip, 256dip, True), b, testotitle, testobody)
n.Color(0xFF00AEFF)
Dim cs As CSBuilder
n.BigTextStyle(testotitle, cs.Initialize.BackgroundColor(Colors.Red).Append("summary text").PopAll,testobody)
'n.Build("title", testobody, "tag", Me).Notify(8)
n.Build("title", "collapsed content", "tag", Main).Notify(7)
End Sub