I am converting a Scrollview code to xCLV used for producing financial reports that have 5 to over 100 text items accross and over 100 rows. Rows have varying number of items and alignments. The cross-platform conversion is needed for horizontal and verticle scrolling ability. The current Scrollview version works fine for scrolling vertical only. On the Scrollview each item is added as a label at a specific position with AddView like-
What is its equivalent in xCustomListView, especially the positioning of each label? I see 2 options-
But neither allows positioning of the label. How do I add and position each label?
Thanks.
B4X:
Dim sv As ScrollView
sv.Initialize("sv",SafeWidth,DeviceHeight*3)
sv.ContentWidth=SafeWidth
sv.ContentHeight=LastLineAt + height0
[B]sv.Panel.AddView(lbl, Left, Top, Width, Height)[/B]
What is its equivalent in xCustomListView, especially the positioning of each label? I see 2 options-
B4X:
[B]clv.Add(Panel, Value)
clv.AddTextItem(Text, Value)[/B]
But neither allows positioning of the label. How do I add and position each label?
Thanks.