I want to parse JSON from URL to android label in basic4android .
I try this but not working :
Sub Activity_Create(FirstTime As Boolean)
Dim Label1 As Label
Dim job As HttpJob
job.Initialize("Job", Me)
job.Download("http://api.tvmaze.com/shows/82")
If job.Success = True Then
Dim parser As JSONParser
parser.Initialize(job.GetString)
Dim root As Map = parser.NextObject
Dim name As String = root.Get("name")
Label1.Text = Title
End if