tell me how to implement ListView so that when you reach the last element, some more records are loaded into the list

    1 answer 1

    In the adapter, as soon as getView() is getView() for the last item in the list, load a new portion of the elements, add them to the adapter, and call the notifyDataSetChanged() .