Hello,
I have one xCustomListView anl a small list of items witch i use to display some customer info:
When user click on CLV1 item and change this setting my CLV1 item have to change it's text according to user selection. Is it possible to change item text dinamicly by Item index?
I only find how to add item:
I have one xCustomListView anl a small list of items witch i use to display some customer info:
B4X:
CLV1.Add(CreateListItem("Access type", CLV1.AsView.Width, 60dip), $"Item #${1}"$)
CLV1.Add(CreateListItem("Access date", CLV1.AsView.Width, 60dip), $"Item #${2}"$)
When user click on CLV1 item and change this setting my CLV1 item have to change it's text according to user selection. Is it possible to change item text dinamicly by Item index?
I only find how to add item:
B4X:
Private Sub CLV1_ItemClick (Index As Int, Value As Object)
ToastMessageShow(Index,True)
CLV1.InsertAtTextItem(Index,"JABA",Value)
End Sub