ListView new line char?

Am I able to split lines in a ListView? I tried to insert a \n and a \r\n but the text didn’t split.

I’m trying to turn this:

sms@20190510@this is the message

into this:

sms@20190510
this is the message

Thank you…

you can split the line. first enable the html of the listview and use “< br >” to break line and i gived the space because here i am unable to write br without giving space between them.

so use that…
code is < b r > dont give space between these letters.

3 Likes

With HTML you can also use the tag for paragraph

< p >< /p >

Many thanks…

1 Like