How to display data in listview once you parse the XML with nested tag?

ledzep

New Member
I am stuck in a very big issue.I have the XML file which is like this :::\[code\]<activities><activity> <filename>http://www.someurl.com/documentSetting/members/0/701/66/videos/521/521.mp4</filename> <thumbnail>http://www.someurl.com/documentSetting/members/0/701/66/videos/521/521_120x90.jpg</thumbnail> <id>521</id> <is_private>0</is_private> <comments> <comment> <id>111</id> <body>Good video</body> <member_id>oo7</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment> <comment> <id>222</id> <body>nice video</body> <member_id>123</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment> <comment> <id>333</id> <body>gotcha!!!</body> <member_id>11</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment></activity><activity> <filename>http://www.someurl.com/documentSetting/members/0/701/66/videos/521/521.mp4</filename> <thumbnail>http://www.someurl.com/documentSetting/members/0/701/66/videos/521/521_120x90.jpg</thumbnail> <id>522</id> <is_private>0</is_private> <comments> <comment> <id>101</id> <body>aaa</body> <member_id>oo7</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment> <comment> <id>222</id> <body>bbb</body> <member_id>123</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment> <comment> <id>333</id> <body>ccc</body> <member_id>11</member_id> <profile_image>http://www.someurl.com/images/avatar/default_male_qlone.png</profile_image> </comment></activity>\[/code\]Now i want to parse this XML file and Display it like this in ListView :::Consider filename tag as Status ::Status 1:\[code\] Comment 1 Comment 2 Comment 3 Comment 4\[/code\]Status 2:\[code\] Comment 1 Comment 2 Comment 3 \[/code\]Suppose the first activity has 4 comment as a nested tag and second activity has the 3 comment in his comment tag...so How to do this ????Any Help will be appreciated !!!I am desparately need the answer ....Plz plz plz plz plz help me as soon as possible...Hope the question is clear .... plz answer ...Thanks in Advance .....
 
Back
Top