Erel,
Was extremely tired so I missed adding the code:
Code:
Activity DispLogAll
Sub Process_Info
...........JSON Stuff
I initialize map1 As Map
JSON etc...
Dim Position As Int
id = map1.Get("id")
typeofcall = map1.Get("typeofcall")
loc = map1.Get("location")
gpsdev = ( " " & id & " " & typeofcall & " " & loc)
ListView1.AddTwoLines(i & gpsdev, narrative)
Log(id)
' Log(gpsdev)
' Log(narrative)
Next
Log(Position)
Activity.AddView(ListView1, 0, 120, 100%x, 100%y)
Return
End Sub
Sub ListView1_Click(Position As Int, map1 As Map)
ListIndex = Position
StartActivity(ItemDetail)
End Sub
Activity ItemDetail
Sub Details (Position As Int, map1 As Map)
map1.Get(i)
DispLogAll.id = map1.Get("id")
DispLogAll.typeofcall = map1.Get("typeofcall")
DispLogAll.loc = map1.Get("loc")
DispLogAll.user = map1.Get("user")
DispLogAll.narrative = map1.Get("narrative")
DispLogAll.priority = map1.Get("priority")
DispLogAll.reportnumber = map1.Get("reportnumber")
DispLogAll.disposition = map1.Get("disposition")
End Sub
I am just geting more information in detail for the Item in the initial list in other activity.
I still get the Signature mismatch.
Help,
Thx R