I'm trying to make a two line listview with large text on each line.
It appears that there is a maximum size for the text in label and secondlabel, as my text is being clipped.
If this is correct, what is the maximum size? If not correct, what am I doing wrong in the following code?
It appears that there is a maximum size for the text in label and secondlabel, as my text is being clipped.
If this is correct, what is the maximum size? If not correct, what am I doing wrong in the following code?
B4X:
Sub Activity_Create(FirstTime As Boolean)
lv.Initialize("lv")
lv.TwoLinesLayout.ItemHeight = 120dip
lv.TwoLinesLayout.Label.TextSize = 40
lv.TwoLinesLayout.SecondLabel.TextSize = 40
For i = 1 To 100
lv.AddTwoLines ("Item #" & i,"This is the second line")
Next
Activity.AddView(lv, 0, 0, 100%x, 100%y)
End Sub