in my app i am trying to show some images in a grid view manner. normally i know to show grid view for the images stored in drawables.
When the activity opens it hits an url and gets back an xml file. The images are stored in this xml file as follows.
<Search>
<Searchdata>
<id>http://xxxxxxxxxxxxxxxxxxx/avatars/original/1304429263_spot.jpg</id
</Searchdata>
<Searchdata>
<id>http://xxxxxxxxxxxxxxxxxxxx/avatars/original/1304429219_spot.jpg</id
</Searchdata>
<Searchdata>
<id>http://xxxxxxxxxxxxxxxxxxxx/avatars/original/1304429208_spot.jpg</id
</Searchdata>
</Search>
like this it goes on...
I am storing this xml file in a constant value and by sax parser i am getting the values in the tag <id></id>
Now how to move all the id tags to my grid views ImageAdapter class file.
Please help me....