to top
Android APIs
Added in API level 1
public static interface

SimpleAdapter.ViewBinder

android.widget.SimpleAdapter.ViewBinder

Class Overview

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

Public Methods
abstract boolean setViewValue(View view, Object data, String textRepresentation)
Binds the specified data to the specified view.

Public Methods

public abstract boolean setViewValue (View view, Object data, String textRepresentation)

Added in API level 1

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