what i am implementing ListActivity with custom row.
I am wondering if there id any possibility to load more rows when the listview reaches the bottom .
I have found this tutorial Endless scrolling in listview
Please help me understand how it works
ListViewallows you to register anOnScrollListener. It’sonScroll-Method gets called everytime the user scrolls in the ListView. By doing some calculations with the parameters provided, you can check whether the user reached the end of the ListView. To quote some code from your example:There, you can just load some more items from wherever you get them, put them into your Adapter and call it’s
notifyDataSetChanged()-Method. Make sure you call that method from your UI-Thread though, for example by using therunOnUiThread-Method of your Activity.