how can I get the content from a list e.g.
Product[] items = {
new Product("test1",07,07,2013),
new Product("test2",07,07,2013),
new Product("test3",07,07,2013),
};
and put this in a onItemClick(). if someone click the first line it should output test1 7.7.2013. And this line isn't the same as my listview. how can I do this?