Android Question Notifications with the carriage return

Vincenzo

Member
Licensed User
Longtime User
I was trying to manage notifications can with lines but without success,
the following code works well if the mold with the log function but not with notifications:

Dim T As String
T = "Row1" & Chr (13) & Chr (10) & "Row2" & Chr (13) & Chr (10)
log (T) 'Ok format
Notified.SetInfo ("Title", T, MyAct) 'only one row
 

Vincenzo

Member
Licensed User
Longtime User
is not possible manage the body row ?
other apps do the management on multiple lines!
in more management truncates the number of characters by inserting "..." instead of putting it on multiple lines.
Multiple line of body is not standard?
 
Upvote 0

barx

Well-Known Member
Licensed User
Longtime User
I think what your after is Big Text Style supported by the notification Builder library

download the demo app and try it out, see if it suits your requirements ;)
 
Upvote 0
Top