android - What's the proper way to implement a custom SimpleCursorAdapter? -


i need same functionality of simplecursoradapter custom bindview() method. that's practically difference have in custom adapter, , want have rest of functionallity of simplecursoradapter stay is.

is enough extend cursoradapter? more looking @ source of simplecursoradapter 1 of constructors commented as:

@deprecated option discouraged, results in cursor queries being performed on application's ui thread , can cause poor responsiveness or application not responding errors.

how make sure custom adapter doesn't run on activity thread? need of other methods of simplecursoradapter such swapcursor()?


Comments