[android-developers] Re: ListView progres

2009-09-13 Thread danny
Here's how I would go about it... Listen for the scroll state - OnScrollListener.SCROLL_STATE_IDLE When it's idle, calculate the distance between the end of the scrollbar and the bottom of the view. If it's 50 pixels (or whatever) - fetch more data from the server. On Sep 13, 5:43 pm, Engin Ar

[android-developers] Re: ListView progres

2009-09-13 Thread Mark Murphy
Engin Arslan wrote: > Hi, I use listview in my application. I get listview values from > server so it is a little slow. So I want to optimize it such a way. I > will load 10 content of listview and load anotjer 10 content when user > pull down listview. Method is similar to google market method. M