views:

48

answers:

1

Hello All!

I am working on the Parsing of the response from a web Service: "http://www.google.com/ig/api?weather=Ahmedabad"

Now I am going parallel with an parsing example available on the Internet, This is my Response :

<?xml version="1.0" ?> 
- <xml_api_reply version="1"> 
- <current_conditions>
  <condition data="Haze" /> 
  <temp_f data="84" /> 
  <temp_c data="29" /> 
  <humidity data="Humidity: 74%" /> 
  <icon data="/ig/images/weather/haze.gif" /> 
  <wind_condition data="Wind: NW at 13 mph" /> 
- </current_conditions> 

Can anybody help me out how create objects of the Outer tags if necessary?

Sorry if I am asking a stupid Question. Thanks, david

A: 

Here you have an article titled Working with XML on Android, which looks to be exactly what you need.

espinchi