ViewHolder pattern improves ListView scrolling framerate, as seen in following example: http://developer.android.com/intl/de/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html

Is it possible to keep this pattern while using different kind of Views for different rows?

In other words, is it possible to do something like:

 public View getView(int position, View view, ViewGroup parent) {  
     // calculate viewID here
     if (view == null || *view is not null but was created from different XML than viewID* ) { 
         view = mInflater.inflate(viewId, null);  
link|improve this question

80% accept rate
feedback

1 Answer

up vote 11 down vote accepted

Yes, though it is far better to override getViewTypeCount() and getItemViewType() in your Adapter. That will teach Android's object pool to only hand you a row of the proper type back in getView().

link|improve this answer
1  
is there any similar trick for ExpandableListAdapter? – tomash Jan 17 '10 at 18:09
meanwhile, I added needed information as a flag to ViewHolder, it works – tomash Jan 17 '10 at 19:55
feedback

Your Answer

 
or
required, but never shown

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