- view
- Existing view, returned earlier by newView
- context
- Interface to application's global information
- cursor
- The cursor from which to get the data. The cursor is already moved to the correct position.
Type Reason Java.Lang.IllegalStateException if binding cannot occur
Binds all of the field names passed into the "to" parameter of the constructor with their corresponding cursor columns as specified in the "from" parameter. Binding occurs in two phases. First, if a NoType:android/widget/SimpleCursorAdapter$ViewBinder;Href=../../../reference/android/widget/SimpleCursorAdapter.ViewBinder.html is available, NoType:android/widget/SimpleCursorAdapter$ViewBinder;Href=../../../reference/android/widget/SimpleCursorAdapter.ViewBinder.html#setViewValue(android.view.View, android.database.Cursor, int) is invoked. If the returned value is true, binding has occured. If the returned value is false and the view to bind is a TextView, SimpleCursorAdapter.SetViewText(TextView, System.String) is invoked. If the returned value is false and the view to bind is an ImageView, SimpleCursorAdapter.SetViewImage(ImageView, System.String) is invoked. If no appropriate binding can be found, an Java.Lang.IllegalStateException is thrown.