Android Question Height of the individual rows in "CustomListView"

HarryPottier

Member
Licensed User
How can I change the height of the individual rows in "CustomListView
So the distance between the individual lines.
I found the following for the TextSize
B4X:
CLV1.DesignerLabel.TextSize = 15
 

mmieher

Active Member
Licensed User
Longtime User
When you use AddTextItem, the height depends on the text content. You can create your own layout and add it with Add.

Another option is to resize the item after you add it:
B4X:
CLV1.AddTextItem("String", i)
CLV1.ResizeItem(CLV1.Size - 1, 200dip)
I have been trying to do this for a very long time. .ReSizeItem. Ugh.
 
Upvote 0
Top