I have a long ListView that the user can scroll around before returning to the previous screen. When the user opens this ListView again, I want the list to be scrolled to the same point that it was previously. Any ideas on how to achieve this?
|
|
Try this:
|
|||||||||||||||||||
|
|
|||||||||||||
|
|
A very simple way:
The method setSelection will reset the list to the supplied item. If not in touch mode the item will actually be selected if in touch mode the item will only be positioned on screen. A more complicated approach:
|
|||||||||||||||||
|
|
I found something interesting about this. I tried setSelection and scrolltoXY but it did not work at all, the list remained in the same position, after some trial and error I got the following code that does work
If instead of posting the Runnable you try runOnUiThread it does not work either (at least on some devices) This is a very strange workaround for something that should be straight forward. |
|||||||||||
|
|
I adopted the solution suggested by @(Kirk Woll), and it works for me. I have also seen in the Android source code for the "Contacts" app, that they use a similar technique. I would like to add some more details: On top on my ListActivity-derived class:
Then, some method overrides:
Of course "loadData" is my function to retrieve data from the DB and put it onto the list. On my Froyo device, this works both when you change the phone orientation, and when you edit an item and go back to the list. |
|||||||
|
|
CAUTION!! There is a bug in AbsListView that doesn't allow the onSaveState() to work correctly if the ListView.getFirstVisiblePosition() is 0. So If you have large images that take up most of the screen, and you scroll to the second image, but a little of the first is showing, the scroll position Won't be saved... from AbsListView.java:1650 (comments mine)
But in this situation, the 'top' in the code below will be a negative number which causes other issues that prevent the state to be restored correctly. So when the 'top' is negative, get the next child
|
|||
|
|