Android Question Tab character in ListView string?

daveinhull

Active Member
Licensed User
Longtime User
Hi,

This might sound like a silly question, but how to I put a tab character in a string that is going on SingleLine ListView?

I have tried:
sTemp = "xxxx" & chr(9) "yyyyy"
ListView.AddSingleLine(sTemp)

sTemp = "xxxx" & chr(KEYCODE_TAB) & "yyyy"
ListView.AddSingleLine(sTemp)

What I'm trying to do is put up "xxxx" followed by a tab and "yyyy" so that the columns are aligned.
I'm thinking that this isn't possible.

Thoughts?

Thanks in advance
Dave
 
Top