[android-developers] Re: slowness in Creation of List with huge items set.

2008-11-24 Thread Michael
One thing that you may not realize is that if you try to do a long process in your onCreate() in your Activity, you may have the system present you with the oh no, this activity is unresponsive dialog. Better would be to just create all Views and things in onCreate() and launch a background

[android-developers] Re: slowness in Creation of List with huge items set.

2008-11-20 Thread Romain Guy
Hi, ListView was designed and implemented to perform at the same speed with 10 items or with several thousand (and more) items. You are probably doing something wrong in the way you load your values in the list adapter. Without knowing how your application works, it is not possible to help you