Search code examples
androidlistviewprepend

android customize list view prepends results


I am using list view using "ArrayAdapter" to display number of items while user is looking at results when user click on load button i want results to load and prepends(add in the beginning)


Solution

  • Found solution

    use adapter's insert method and add it to position 0 every time and also before adding reverse order so that first item will display at the beginning if don't reverse first item will display at end.