Added in API level 1

ViewBinder

interface 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

Public methods
abstract Boolean
setViewValue(view: View!, data: Any!, textRepresentation: String!)

Binds the specified data to the specified view.

Public methods

setViewValue

Added in API level 1
abstract fun setViewValue(
    view: View!,
    data: Any!,
    textRepresentation: String!
): Boolean

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 View!: the view to bind the data to
data Any!: the data to bind to the view
textRepresentation String!: 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
Return
Boolean true if the data was bound to the view, false otherwise