Today we get on with our series that will connect our Android applications to internet webservices!
Next up in line: from JSON to a Listview. A lot of this project is identical to the previous post in this series so try to look there first if you have any problems. On the bottom of the post ill add the Eclipse project with the source.
For this example i made use of an already existing JSON webservice located here.
This is a piece of the JSON array that gets returned:
01
{"earthquakes": [
02
{
03
"eqid": "c0001xgp",
04
"magnitude": 8.8,
05
"lng": 142.369,
06
"src": "us",
07
"datetime": "2011-03-11 04:46:23",
08
"depth": 24.4,
09
"lat": 38.322
10
},
11
{
12
"eqid": "2007hear",
13
"magnitude": 8.4,
14
"lng": 101.3815,
15
"src": "us",
16
"datetime": "2007-09-12 09:10:26",
17
"depth": 30,
18
"lat": -4.5172
19
}
20
<--more -->
21
22
]}
So how do we get this data into our application! Behold our getJSON class!
Log.e("log_tag", "Error converting result "+e.toString());
32
}
33
34
//try parse the string to a JSON object
35
try{
36
jArray = newJSONObject(result);
37
}catch(JSONException e){
38
Log.e("log_tag", "Error parsing data "+e.toString());
39
}
40
41
returnjArray;
42
}
The code above can be divided in 3 parts.
the first part makes the HTTP call
the second part converts the stream into a String
the third part converts the string to a JSONObject
Now we only have to implement this into out ListView. We can use the same method as in the XML tutorial. We make a HashMap that stores our data and we put JSON values in the HashMap. After that we will bind that HashMap to a SimpleAdapter. Here is how its done: