Re: [mono-android] ViewHolder Implementation

2012-01-06 Thread bauermt40
I was able to figure this out. Maybe it was a noob thing, but I wanted to post the correct implementation for anyone else who's struggling with the ViewHolder. public override View GetView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (c

[mono-android] ViewHolder Implementation

2012-01-05 Thread bauermt40
Hi, I'm stuck. What exactly do I need for the first parameter of convertView.SetTag([int], holder)? public override View GetView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertVie