I have a Custom ListView in which I add a panel. How do I programmatically determine what vertical dimension the panel occupies?
I did not find a universally valid method through the forum ...
Thank you!
B4X:
CLVOf.Add(CreatePanel,0)
Sub CreatePanel() As B4XView
Dim xui As XUI
Dim p As B4XView = xui.CreatePanel("")
p.LoadLayout("itemOfertareLayout")
............................................
p.SetLayoutAnimated(0,0,0,Activity.Width, XXXXXXXXXXXdip)
Return p
End Sub
I did not find a universally valid method through the forum ...
Thank you!