Question

This question already has an answer here:

How can I change the first visible item in a list view (I searched a method such as setFirstVisiblePosition) ?

Was it helpful?

Solution

Have a look at this question.

OTHER TIPS

ListView.getFirstVisiblePosition()  

Returns the position within the adapter's data set for the first item displayed on screen. Once you have the position, you can alter the item at that position in your adapter.

Presume my Adapter is binding a String[] to a ListView. I can use getFirstVisiblePosition() method on the listview instance, which will return the index/position of the first visible item, I can then change my String item at the "index"th position and alter the list.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top