I am populating a ListView control with the results of a query converted to JSON and added to the ListView using the
process.
I'm hiding the SecondLabel in the control using:
This results in every other line of the ListView being blank.
Is there anyway to remove the line from the presentation so the items being shown are continuous without gaps? Like maybe format the height of the supposedly hidden label to zero?
When I click on a selection - the blank row is highlited and not the subject row with the text in it, but it does pass the right value lvd.FirstRow to the click event.
hope so...
GP
B4X:
ListView1.AddTwoLines2(lvd.SecondRow,lvd.FirstRow,lvd.FirstRow)
process.
I'm hiding the SecondLabel in the control using:
B4X:
ListView1.TwoLinesLayout.SecondLabel.Visible = False
This results in every other line of the ListView being blank.
Is there anyway to remove the line from the presentation so the items being shown are continuous without gaps? Like maybe format the height of the supposedly hidden label to zero?
When I click on a selection - the blank row is highlited and not the subject row with the text in it, but it does pass the right value lvd.FirstRow to the click event.
hope so...
GP