'See TableView tutorial: https://www.b4x.com/android/forum/threads/tableview-tutorial.35542/
Sub CreateRow(Row() As String) As Object()
Dim labels(Row.Length) As Object
For i = 0 To Row.Length - 1
Dim lbl As Label
lbl.Initialize("")
lbl.Text = Row(i)
lbl.WrapText = True '<---set to true
labels(i) = lbl
Next
Return labels
End Sub