In ListView I can get index of the first item displayed by using getFirstVisiblePosition() How can I set an item at a particular index to display in the first po开发者_Python百科sition - I want something like setFirstVisiblePosition( int index )
You can use setSelection(index)
so the display will jump to the index you want.
精彩评论