I have a listview with some items. I would like to get the text from the selected item.
Here is my list adapter and the onItemClickListener:
ListView
If you are using a List to populate the ListView in your onItemClick() method.
String s = list.get(position);
You need to be able to access this list within the inner class