H HarryPottier Member Licensed User Jun 23, 2020 #1 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
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
Erel B4X founder Staff member Licensed User Longtime User Jun 23, 2020 #2 How are you adding items? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Jun 24, 2020 #4 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) Upvote 0
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)
H HarryPottier Member Licensed User Jun 24, 2020 #5 Thanks Erel, was exactly what I was searching for Upvote 0
mmieher Active Member Licensed User Longtime User Mar 23, 2022 #6 Erel said: 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) Click to expand... I have been trying to do this for a very long time. .ReSizeItem. Ugh. Upvote 0
Erel said: 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) Click to expand... I have been trying to do this for a very long time. .ReSizeItem. Ugh.