HI All
How i get a list of images from a list of "json string "
i want to get all new images and save it in internal Dir
Thanks
How i get a list of images from a list of "json string "
i want to get all new images and save it in internal Dir
B4X:
Dimm bytesList As List
Dim count As Int = root.Get("count")
Dim items As List = root.Get("items")
For Each colitems As Map In items
Dim img As String = colitems.Get("img")
' I want here to save the image one-by-one '
Next
Thanks