Skip to content Skip to sidebar Skip to footer

Performance Issue With Listview And Cursoradapter For Large Amount Of Data

I have about 4k rows in sqlite table, table has 7 columns. I created working ListView with my own CursorAdapter. Query is like this SELECT * FROM [table] ORDER BY [column] DESC; Ta

Solution 1:

I'd create a custom Adapter, that only loads whatever is needed for the active views and that reuses views in the getView() method. It's really quite simple.

Update

I found an excellent example, that you should be able to use: http://android.amberfog.com/?p=296

Post a Comment for "Performance Issue With Listview And Cursoradapter For Large Amount Of Data"