Android Question xCustomListView add change Label color

sigster

Active Member
Licensed User
Longtime User
Hi

is it possible to change Lable color when I add item to xCustomListView

B4X:
clv2.Add(CreateListItem($"Item #${i}"$, 160dip, clv2.AsView.Height), $"Item #${i}"$)
 

sigster

Active Member
Licensed User
Longtime User
CreateListItem In progress


Think I've found this out

B4X:
Private Sub CreateItem(Width As Int, Title As String, Image As String, Content As String, Color_label As Int) As Panel

lblTitle.TextColor = Color_label
 
Upvote 0
Top