CursorAdapter.NewView(Context, ICursor, ViewGroup) 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.
Makes a new view to hold the data pointed to by cursor.
[Android.Runtime.Register("newView", "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;", "GetNewView_Landroid_content_Context_Landroid_database_Cursor_Landroid_view_ViewGroup_Handler")]
public abstract Android.Views.View? NewView (Android.Content.Context? context, Android.Database.ICursor? cursor, Android.Views.ViewGroup? parent);
[<Android.Runtime.Register("newView", "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;", "GetNewView_Landroid_content_Context_Landroid_database_Cursor_Landroid_view_ViewGroup_Handler")>]
abstract member NewView : Android.Content.Context * Android.Database.ICursor * Android.Views.ViewGroup -> Android.Views.View
Parameters
- 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.
- parent
- ViewGroup
The parent to which the new view is attached to
Returns
the newly created view.
- Attributes
Remarks
Makes a new view to hold 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.