
I'm writing an application that has to display a lot of information, getting them from an XML file (in the future, multiple XML file with the same structure).
I'm wondering what is the best way to do that.
Basically, I've the mentioned XML file, which contains various informations. What I want to do is output them in a ListView, for example, and give the user the possibility to click them and do various things.
By now it's pretty simple, but the elements carry more than one information, such name, date, URl and more. So, in the ListView I'd want to display only the name and the date, leaving all the other info hidden for later management.
So, what is the best way to do that?
Thank you, great job



