public override void BindView(Android.Views.View view, Context context, ICursor cursor) { view.FindViewById <TextView> (Resource.Id.vendor_name).Text = cursor.GetString(SearchQuery.NAME); string snippet = cursor.GetString(SearchQuery.SEARCH_SNIPPET); ISpannable styledSnippet = UIUtils.BuildStyledSnippet(new Java.Lang.String(snippet)); view.FindViewById <TextView> (Resource.Id.vendor_location).TextFormatted = styledSnippet; bool starred = cursor.GetInt(VendorsQuery.STARRED) != 0; view.FindViewById(Resource.Id.star_button).Visibility = starred ? ViewStates.Visible : ViewStates.Invisible; }