Android Question CustomListView AddTextItem shows empty box

Acuario

Member
Licensed User
Longtime User
I have a CustomListView that I am populating from two database queries. I want to add a separating line with text between the two sets of data.
I add the line
B4X:
clv.AddTextItem("set2","set2")
between the two queries but all I get is a white box with no visible text between the results from the queries. The queries work correctly and the clv is populated with the correct data, just the text item doesn't show.

Any ideas?
 

Acuario

Member
Licensed User
Longtime User
That was it, looks like the default background is white and the text is white by default so nothing showed up. All sorted now, thanks.
 
Upvote 0
Top