CursorAdapter.BindView(View, Context, ICursor) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.