i have created a custom view as following and store it in map to use it later
how to show this customview later on when i need it ?
B4X:
Dim csv As customview
csv.Initialize(Me, "csviw", "view1",Rnd(0, 6000))
csv.DesignerCreateView(panel,Null,Null)
csv.additemtolist(Rnd(0,100000))
map.Put("view1", csv)
how to show this customview later on when i need it ?
B4X:
If map.ContainsKey("view1") Then
Dim csv As customview
csv = map.Get("view1")
'how to show that view ?