Android Question Tab function on a string

PumaCyan

Member
Licensed User
how to add tab function in a character? to look neat and aligned inside a customlistview...
currently I use spaces

My Code:
CustomListView1.AddTextItem(CS.Initialize.Typeface(Typeface.DEFAULT_BOLD).Pop.Size(13).Append("Nota        :  " & cd.no_nota).Pop.Size(13).Append(CRLF & "Total        :  " & MyFormat.MyCurrency(cd.total)).Append(CRLF & "Petugas  :  " & cd.user).PopAll, cd.nota)
 

Attachments

  • Screenshot_2023-04-18-18-42-07.png
    Screenshot_2023-04-18-18-42-07.png
    50.7 KB · Views: 120
Last edited:

MicroDrie

Well-Known Member
Licensed User
Longtime User
Have you tried TAB, or \t or \\t?
 
Upvote 0
Top