CursorAdapter.BindView(View, Context, ICursor) Method

Definition

Bind an existing view to the data pointed to by cursor

[Android.Runtime.Register("bindView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;)V", "GetBindView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_Handler")]
public abstract void BindView (Android.Views.View? view, Android.Content.Context? context, Android.Database.ICursor? cursor);
[<Android.Runtime.Register("bindView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;)V", "GetBindView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_Handler")>]
abstract member BindView : Android.Views.View * Android.Content.Context * Android.Database.ICursor -> unit

Parameters

view
View

Existing view, returned earlier by newView

context
Context

Interface to application's global information

cursor
ICursor

The cursor from which to get the data. The cursor is already moved to the correct position.

Attributes

Remarks

Bind an existing view to the data pointed to by cursor

Java documentation for android.widget.CursorAdapter.bindView(android.view.View, android.content.Context, android.database.Cursor).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to