Added in API level 5

SimpleCursorTreeAdapter.ViewBinder

public static interface SimpleCursorTreeAdapter.ViewBinder

android.widget.SimpleCursorTreeAdapter.ViewBinder


This class can be used by external clients of SimpleCursorTreeAdapter to bind values from the Cursor to views. You should use this class to bind values from the Cursor to views that are not directly supported by SimpleCursorTreeAdapter or to change the way binding occurs for views supported by SimpleCursorTreeAdapter.

Summary

Public methods

abstract boolean setViewValue(View view, Cursor cursor, int columnIndex)

Binds the Cursor column defined by the specified index to the specified view.

Public methods

setViewValue

Added in API level 5
public abstract boolean setViewValue (View view, 
                Cursor cursor, 
                int columnIndex)

Binds the Cursor column defined by the specified index to the specified view. When binding is handled by this ViewBinder, this method must return true. If this method returns false, SimpleCursorTreeAdapter will attempts to handle the binding on its own.

Parameters
view View: the view to bind the data to

cursor Cursor: the cursor to get the data from

columnIndex int: the column at which the data can be found in the cursor

Returns
boolean true if the data was bound to the view, false otherwise