Probably a beginner problem. But I'm just not clear. When I write data into a map and then add it to a list Why do not I get it out the other way around?!? regards
B4X:
dim liste as list
'put some data into a list
Dim m As Map
m.Initialize
m.Put("id_user", From)
m.Put("message",Message)
m.Put("dtime", Zeit)
liste.Add(m)
'back from list to variable
Dim m As Map = liste.Get(1)
Dim msg As String = m.Get("message")