开发者

Android ListView y position

开发者 https://www.devze.com 2023-03-02 10:07 出处:网络
It seems like ListView doesn\'t expose its y-position in the same way a ScrollView does.In other words: I need to remember the exact position the ListView was scrolled to and set it when I return to t

It seems like ListView doesn't expose its y-position in the same way a ScrollView does. In other words: I need to remember the exact position the ListView was scrolled to and set it when I return to the activity.

Just to clarify: I don't need the selecte开发者_高级运维d item... that's pretty straight forward. I need to restore the exact pixel-wise y position on the ListView.

Thanks!


I've used this successfully when saving (in onSaveInstanceState) and restoring (onCreate), when switching orientations:

Saving:

    int savedPosition = list.getFirstVisiblePosition();
    View firstVisibleView = list.getChildAt(0);
    int savedListTop = (firstVisibleView == null) ? 0 : firstVisibleView.getTop();

Restoring:

   if (savedPosition >= 0) { //initialized to -1
      list.setSelectionFromTop(savedPosition, savedListTop);
    }

This will precisely save the Y position. Well, it misses by a few pixels every once in a while.


When you are returning from another Activity, the ListView will remain scrolled to its original position that it was at when you left that ListView Activity. If you are updating the contents of the list make sure you just use notifyDataSetChanged() on the adapter, do not re-assign the adapter - this will reset the list to the top.

Check your onResume method in your ListView Activity, it might be re-assigning a list adapter.

If you need to remember an arbitrary scroll position that doesn't rely on the Activity stack, I am willing to bet that isn't possible besides just saving the current selected or first visible item. A ListView does not have a defined height. It is relative to both the number of items and content of those items.


Parcelable state = list.onSaveInstanceState();

// do stuff

list.onRestoreInstanceState(state);

Is the only correct way I know of to maintain exact position of a list. The above solution that's marked as correct bumps up/down a few pixels so not really the most professional solution.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号