Android Question NB6 notification with big text and big picture

asales

Expert
Licensed User
Longtime User
I want to see a push notification with big picture and text. I use the code below, but I don't see the big text, only the big image.
How can I do this?

Thanks in advance for any tip.
B4X:
Dim n As NB6
n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(smiley)
n.BigTextStyle("title", "summary text", Message.GetData.Get("body"))

n.BigPictureStyle(b.Resize(256dip, 256dip, True), b, "content title", "summary text")
n.Color(0xFF00AEFF)

n.Build("title", "collapsed content", "tag", Main).Notify(1)
 
Top