i want to load mobile contacts and sim contacts into my listview
with indicators. The indicators depends on server side list. The listview
contains 2 imageviews
and 2 textviews
so that it takes more time to load please provide any solution for this issue.
Asked
Active
Viewed 673 times
-2
-
You can use lazy loading for image and recycle the list view which faster your listview scrolling.If needed, i can set any example as well – Harsh Parikh Sep 20 '14 at 11:59
-
plz post the example – Sugan Sep 25 '14 at 09:42
1 Answers
0
First, every call to the server in order to retrieve new data must be perform with an AsynckTask or similar implementation.
Second, use the holder pattern, While this sounds more complex than the stander way, “it is approximately 15 % faster then using the findViewById() method”.
Here a really nice tutorial (8.4. Holder Pattern)

Víctor Albertos
- 8,093
- 5
- 43
- 71