I need to modify the default ListView behavior so that when an item is deleted and the adapter has notifyDataSetChanged()
called, instead of pulling the later items upward I want to pull the earlier items (including hidden ones the user has already scrolled past) downward. The ultimate goal is an infinite scrollable ListView
that destroys the old views for memory conservation reasons and then keeps going. What I want to know is:
- How to modify this behavior, or...
- If
ListView
's design is already smart enough that if I use a library like Picasso or Universal Image Loader, or replace all hidden views with a dummy single color `Drawable, it can handle hundreds or thousands of scrolling items.
Thanks in advanced! For the endless scroll I hope to do something similar to here or here.