android.support.v4.widget
Interface SimpleCursorAdapter.ViewBinder

Enclosing class:
SimpleCursorAdapter

public static interface SimpleCursorAdapter.ViewBinder

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

See Also:
SimpleCursorAdapter.bindView(android.view.View, android.content.Context, android.database.Cursor), SimpleCursorAdapter.setViewImage(ImageView, String), SimpleCursorAdapter.setViewText(TextView, String)

Method Summary
 boolean setViewValue(android.view.View view, android.database.Cursor cursor, int columnIndex)
          Binds the Cursor column defined by the specified index to the specified view.
 

Method Detail

setViewValue

boolean setViewValue(android.view.View view,
                     android.database.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, SimpleCursorAdapter will attempts to handle the binding on its own.

Parameters:
view - the view to bind the data to
cursor - the cursor to get the data from
columnIndex - the column at which the data can be found in the cursor
Returns:
true if the data was bound to the view, false otherwise


Copyright © 2013 Marek Kedzierski. All Rights Reserved.