my android project contains a listview which is filled by a xml-file. xml file contains node:
<item ID=XXXX>VALUE</item>
I'm currently using an arraylist which stores node VALUE and its binded in my listview. On ItemClick a new activity is called where I need the ID.
Now I don't really know how to achive this:
- get values from xml->
- bind only VALUE to listview->
- onItemClick get the id and give it as parameter to other activity (currently giving a parameter to other activity is working with ArrayList)