Android Question multiline notification do not work

3394509365

Active Member
Licensed User
Longtime User
B4X:
Dim Body As String
    DateTime.DateFormat = "dd/MM/yyyy"
    DateTime.TimeFormat = "hh:mm:ss:SSS"
    Dim Now As Long = DateTime.Now
    Body = DateTime.Date(Now) & " - " & DateTime.Time(Now) & CRLF & Livello
    'nid = nid + 1
    ' scrivo la notifica
    Dim n As Notification = CreateNotification(Body)
    n.Notify(nid)
 

JohnC

Expert
Licensed User
Longtime User
To display Multi-Line Notifications, you need to use NB6 and do a "Big text" type notification:

 
Upvote 0
Top