0

I want to three things :

1.Want to show 50000 contacts from db 2.Fast scroller implementation 3.Filter implementation (Edittext)

Currently what i'm doing is :

  1. I Listed contacts in list view by pulling data in worker thread(using aynctask). But in single query itself I'm pulling 50000 contacts. That takes some time and sometimes facing Out-of-memory exception.
  2. I used list-view indexer for fast scroller
  3. using Gauva library for filtering

Please suggest some efficient way to achieve this. Anyway user is not going to see 10000 immediately but i need to implement fast scroller that why pulling all data

1 Answers1

1

You may need to increase the list size dynamically...Refer the below answers

Android Endless List

Dynamically increasing the number of elements in a listview

Community
  • 1
  • 1