So, I'm watching this video http://www.youtube.com/watch?v=N6YdwzAvwOA and Romain Guy is showing how to make more efficient UI adapter code using the getView() method. Does this apply to CursorAdapters as well? I'm currently using bindView() and newView() for my custom cursor adapters. Should I be using getView instead?

link|improve this question

feedback

1 Answer

up vote 19 down vote accepted

CursorAdapter has an implementation of getView() that delegates to newView() and bindView(), in such a way as enforces the row recycling pattern. Hence, you do not need to do anything special with a CursorAdapter for row recycling if you are overriding newView() and bindView().

link|improve this answer
3  
How would I apply the ViewHolder pattern? Would I split it between newView() and bindView() ? – Christopher Perry Aug 20 '10 at 22:09
8  
@Scienceprodigy: In newView(), you would create the ViewHolder for the row and associate it with setTag(). In bindView(), you would retrieve the ViewHolder via getTag(). – CommonsWare Aug 20 '10 at 22:24
Thanks, that works. I'm having a bit of trouble with the recycling of the views though, because I have list items that have a header that is GONE by default, which I use to display dated sections. Everything shows up fine until I fling the list up or down, then there's headers showing up where they shouldn't be. – Christopher Perry Aug 20 '10 at 22:53
2  
@Scienceprodigy: If you have 2+ types of rows, you need to override getViewTypeCount() and getItemViewType(). – CommonsWare Aug 21 '10 at 6:40
@ComonsWare: I did that. But getItemViewType is always called after getView. The result is that getViews gets a wrong convertView when the viewtype changes. Any idea? – Christian13467 Jan 6 at 23:11
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.