Android Question Notification CRLF

Alankoba

Member
Licensed User
Longtime User
Hi dears,

I Am using default notification library, and work fine for me, but a notify event dont support CRLF.

Have any workarround?

B4X:
Dim n As Notification
    n.Initialize
    n.Icon = "not"
    n.Light = True
    n.Vibrate = True
    n.Sound = True
    n.AutoCancel = True
   
    n.SetInfo("title", "AAAAAAAAAAAAAAAAAAAAAAAAA" & CRLF & "BBBBBBBBBBB", Me) 
    n.Notify(1)
 

DonManfred

Expert
Licensed User
Longtime User
You can use a custom notification library which supports more than one line. Or even CRLF... Search the forum for alternatives
 
Upvote 0
Top