Hello,
I'm trying to add the result of a B4JTextFlow into a ListView. It works, but the result is always centered.
I cannot figure out how to align it 'left'. What's the right way to do it?
I'm trying to add the result of a B4JTextFlow into a ListView. It works, but the result is always centered.
I cannot figure out how to align it 'left'. What's the right way to do it?
B4X:
Dim richtext As B4JTextFlow
richtext.Initialize
richtext.Append("Test").SetStrikethrough(True)
ListView1.Items.Add(richtext.CreateTextFlow)