Is there any way to find the view that represents a specific row in a listview.
When the user clicks on a row in my listview I expand it to show more details (using the ExpandAnimation class). Thing is that when I click on another row I want the previously opened row to close. So, I need to be able to get at the view (I have the row number within the dataset).
If the row is not on the screen at present then it is not a problem because it will be shrunk down when getView is called.
So, is there any way to get the view by index in list adapter.