I am using xCustomListView with the CustomLayoutDialog as in the example somewhere in this forum.
Trouble is, the pressed color doesn't do anything. I even added it in code, and no difference. So when I tap on an item, or hold it, there is no feedback as nothing changes. Not sure why.
thoughts?
CLVDialog is declared in the globals
Trouble is, the pressed color doesn't do anything. I even added it in code, and no difference. So when I tap on an item, or hold it, there is no feedback as nothing changes. Not sure why.
thoughts?
CLVDialog is declared in the globals
B4X:
'Display all of the available scoreboards that we can connect to.
Dim ScoreboardDialog As CustomLayoutDialog
ScoreboardDialog.ShowAsync("Choose Scoreboard", "", "", "", Null, True) 'Initialize the dialog to be displayed
ScoreboardDialog.SetSize(60%x, 400dip)
Wait For Dialog_Ready(pnl As Panel)
pnl.LoadLayout("CustomDialogLayout") 'Load the layout which contains the list view.
CLVDialog.PressedColor = Colors.ARGB(255, 0x7E, 0xB4, 0xFA)