android.widget
public
static
interface
android.widget.SimpleAdapter.ViewBinder
android.widget.SimpleAdapter.ViewBinder |
|
This class can be used by external clients of SimpleAdapter to bind
values to views.
You should use this class to bind values to views that are not
directly supported by SimpleAdapter or to change the way binding
occurs for views supported by SimpleAdapter.
Summary
Details
Public Methods
public
boolean
setViewValue(View view, Object data, String textRepresentation)
Binds the specified data to the specified view.
When binding is handled by this ViewBinder, this method must return true.
If this method returns false, SimpleAdapter will attempts to handle
the binding on its own.
Parameters
view
| the view to bind the data to |
data
| the data to bind to the view |
textRepresentation
| a safe String representation of the supplied data:
it is either the result of data.toString() or an empty String but it
is never null |
Returns
- true if the data was bound to the view, false otherwise