Android APIs
public class

SimpleAdapter

extends BaseAdapter
implements Filterable ThemedSpinnerAdapter
java.lang.Object
   ↳ android.widget.BaseAdapter
     ↳ android.widget.SimpleAdapter

Class Overview

An easy adapter to map static data to views defined in an XML file. You can specify the data backing the list as an ArrayList of Maps. Each entry in the ArrayList corresponds to one row in the list. The Maps contain the data for each row. You also specify an XML file that defines the views used to display the row, and a mapping from keys in the Map to specific views. Binding data to views occurs in two phases. First, if a SimpleAdapter.ViewBinder is available, setViewValue(android.view.View, Object, String) is invoked. If the returned value is true, binding has occurred. If the returned value is false, the following views are then tried in order:

If no appropriate binding can be found, an IllegalStateException is thrown.

Summary

Nested Classes
interface SimpleAdapter.ViewBinder This class can be used by external clients of SimpleAdapter to bind values to views. 
[Expand]
Inherited Constants
From interface android.widget.Adapter
Public Constructors
SimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to)
Constructor
Public Methods
int getCount()
How many items are in the data set represented by this Adapter.
View getDropDownView(int position, View convertView, ViewGroup parent)
Gets a View that displays in the drop down popup the data at the specified position in the data set.
Resources.Theme getDropDownViewTheme()
Returns the value previously set by a call to setDropDownViewTheme(Theme).
Filter getFilter()

Returns a filter that can be used to constrain data with a filtering pattern.

Object getItem(int position)
Get the data item associated with the specified position in the data set.
long getItemId(int position)
Get the row id associated with the specified position in the list.
View getView(int position, View convertView, ViewGroup parent)
Get a View that displays the data at the specified position in the data set.
SimpleAdapter.ViewBinder getViewBinder()
Returns the SimpleAdapter.ViewBinder used to bind data to views.
void setDropDownViewResource(int resource)

Sets the layout resource to create the drop down views.

void setDropDownViewTheme(Resources.Theme theme)
Sets the Resources.Theme against which drop-down views are inflated.
void setViewBinder(SimpleAdapter.ViewBinder viewBinder)
Sets the binder used to bind data to views.
void setViewImage(ImageView v, int value)
Called by bindView() to set the image for an ImageView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to an ImageView.
void setViewImage(ImageView v, String value)
Called by bindView() to set the image for an ImageView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to an ImageView.
void setViewText(TextView v, String text)
Called by bindView() to set the text for a TextView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to a TextView.
[Expand]
Inherited Methods
From class android.widget.BaseAdapter
From class java.lang.Object
From interface android.widget.ListAdapter
From interface android.widget.SpinnerAdapter
From interface android.widget.Filterable
From interface android.widget.ThemedSpinnerAdapter
From interface android.widget.Adapter

Public Constructors

public SimpleAdapter (Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to)

Added in API level 1

Constructor

Parameters
context The context where the View associated with this SimpleAdapter is running
data A List of Maps. Each entry in the List corresponds to one row in the list. The Maps contain the data for each row, and should include all the entries specified in "from"
resource Resource identifier of a view layout that defines the views for this list item. The layout file should include at least those named views defined in "to"
from A list of column names that will be added to the Map associated with each item.
to The views that should display column in the "from" parameter. These should all be TextViews. The first N views in this list are given the values of the first N columns in the from parameter.

Public Methods

public int getCount ()

Added in API level 1

How many items are in the data set represented by this Adapter.

Returns
  • Count of items.
See Also

public View getDropDownView (int position, View convertView, ViewGroup parent)

Added in API level 1

Gets a View that displays in the drop down popup the data at the specified position in the data set.

Parameters
position index of the item whose view we want.
convertView the old view to reuse, if possible. Note: You should check that this view is non-null and of an appropriate type before using. If it is not possible to convert this view to display the correct data, this method can create a new view.
parent the parent that this view will eventually be attached to
Returns
  • a View corresponding to the data at the specified position.

public Resources.Theme getDropDownViewTheme ()

Added in API level 23

Returns the value previously set by a call to setDropDownViewTheme(Theme).

Returns
  • the Resources.Theme against which drop-down views are inflated, or null if one has not been explicitly set

public Filter getFilter ()

Added in API level 1

Returns a filter that can be used to constrain data with a filtering pattern.

This method is usually implemented by Adapter classes.

Returns
  • a filter used to constrain data

public Object getItem (int position)

Added in API level 1

Get the data item associated with the specified position in the data set.

Parameters
position Position of the item whose data we want within the adapter's data set.
Returns
  • The data at the specified position.
See Also

public long getItemId (int position)

Added in API level 1

Get the row id associated with the specified position in the list.

Parameters
position The position of the item within the adapter's data set whose row id we want.
Returns
  • The id of the item at the specified position.
See Also

public View getView (int position, View convertView, ViewGroup parent)

Added in API level 1

Get a View that displays the data at the specified position in the data set. You can either create a View manually or inflate it from an XML layout file. When the View is inflated, the parent View (GridView, ListView...) will apply default layout parameters unless you use inflate(int, android.view.ViewGroup, boolean) to specify a root view and to prevent attachment to the root.

Parameters
position The position of the item within the adapter's data set of the item whose view we want.
convertView The old view to reuse, if possible. Note: You should check that this view is non-null and of an appropriate type before using. If it is not possible to convert this view to display the correct data, this method can create a new view. Heterogeneous lists can specify their number of view types, so that this View is always of the right type (see getViewTypeCount() and getItemViewType(int)).
parent The parent that this view will eventually be attached to
Returns
  • A View corresponding to the data at the specified position.

public SimpleAdapter.ViewBinder getViewBinder ()

Added in API level 1

Returns the SimpleAdapter.ViewBinder used to bind data to views.

Returns
  • a ViewBinder or null if the binder does not exist

public void setDropDownViewResource (int resource)

Added in API level 1

Sets the layout resource to create the drop down views.

Parameters
resource the layout resource defining the drop down views

public void setDropDownViewTheme (Resources.Theme theme)

Added in API level 23

Sets the Resources.Theme against which drop-down views are inflated.

By default, drop-down views are inflated against the theme of the Context passed to the adapter's constructor.

Parameters
theme the theme against which to inflate drop-down views or null to use the theme from the adapter's context

public void setViewBinder (SimpleAdapter.ViewBinder viewBinder)

Added in API level 1

Sets the binder used to bind data to views.

Parameters
viewBinder the binder used to bind data to views, can be null to remove the existing binder
See Also

public void setViewImage (ImageView v, int value)

Added in API level 1

Called by bindView() to set the image for an ImageView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to an ImageView. This method is called instead of setViewImage(ImageView, String) if the supplied data is an int or Integer.

Parameters
v ImageView to receive an image
value the value retrieved from the data set

public void setViewImage (ImageView v, String value)

Added in API level 1

Called by bindView() to set the image for an ImageView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to an ImageView. By default, the value will be treated as an image resource. If the value cannot be used as an image resource, the value is used as an image Uri. This method is called instead of setViewImage(ImageView, int) if the supplied data is not an int or Integer.

Parameters
v ImageView to receive an image
value the value retrieved from the data set

public void setViewText (TextView v, String text)

Added in API level 1

Called by bindView() to set the text for a TextView but only if there is no existing ViewBinder or if the existing ViewBinder cannot handle binding to a TextView.

Parameters
v TextView to receive text
text the text to be set for the TextView