Android.Widget.SimpleCursorAdapter.ChangeCursorAndColumns Method
Change the cursor and change the column-to-view mappings at the same time.

Syntax

[Android.Runtime.Register("changeCursorAndColumns", "(Landroid/database/Cursor;[Ljava/lang/String;[I)V", "GetChangeCursorAndColumns_Landroid_database_Cursor_arrayLjava_lang_String_arrayIHandler")]
public virtual void ChangeCursorAndColumns (Android.Database.ICursor c, string[] from, int[] to)

Parameters

c
The database cursor. Can be null if the cursor is not available yet.
from
A list of column names representing the data to bind to the UI. Can be null if the cursor is not available yet.
to
The views that should display column in the "from" parameter. These should all be TextViews. The first N views in this list are given the values of the first N columns in the from parameter. Can be null if the cursor is not available yet.

Remarks

Change the cursor and change the column-to-view mappings at the same time.

[Android Documentation]

Requirements

Namespace: Android.Widget
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 3