B4X:
Private WCList As CustomListView
.
.
.
'loading multiple lines with this:
WCList.AddTextItem (Crsr.GetString("SchM_WCCode"), Crsr.GetString("SchM_WCCode"))
WCList.ResizeItem(WCList.Size - 1, 40)
.
.
.
'later trying to set the background color of the selected item.
PP = WCList.GetPanel(Index)
This line works, sets the color for the item:
B4X:
PP.Color = xui.Color_Gray
B4X:
This line does not:
B4X:
PP.Color = xui.Color_ARGB(255, 186, 204, 210)
I have tried different values for all arguments on the ARGB but it doesn't set the background color.