views:

429

answers:

2

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

+1  A: 

Have a look at this question.

Dave Webb
A: 
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.

Samuh