Example usage for android.widget ArrayAdapter subclass-usage

List of usage examples for android.widget ArrayAdapter subclass-usage

Introduction

In this page you can find the example usage for android.widget ArrayAdapter subclass-usage.

Usage

From source file com.anjalimacwan.adapter.NoteListDateAdapter.java

public class NoteListDateAdapter extends ArrayAdapter<NoteListItem> {
    public NoteListDateAdapter(Context context, ArrayList<NoteListItem> notes) {
        super(context, R.layout.row_layout_date, notes);
    }

    @Override

From source file com.beesham.popularmovies.ReviewAdapter.java

/**
 * Created by Beesham on 10/11/2016.
 * Adapter for the review listview used in details fragment
 */

public class ReviewAdapter extends ArrayAdapter<DetailsFragment.Reviews> {

From source file org.kaaproject.kaa.demo.photoframe.adapter.AlbumsAdapter.java

/**
 * The implementation of the {@link ArrayAdapter} class. Used as an adapter class for the albums list view.
 * Provides list item views with the information about remote device albums.
 */
public class AlbumsAdapter extends ArrayAdapter<AlbumInfo> {

From source file com.devergence.widget.fraglistview.adapter.BaseAdapter.java

/**
 * Adaptador que controla una lista de elementos que se mostrarn a continuacin de un elemento destacado 
 * (manejado por un fragmento independiente de la lista).
 * El efecto producido es el mismo que el de tener una vista con un fragmento y un listview a continuacin,
 * ambos dentro de un scroll view.
 * 

From source file com.example.alexs.tourguide.dcAdapter.java

public class dcAdapter extends ArrayAdapter<dcAttractions> {

    private int mColorID;

    private static final String LOG_TAG = dcAdapter.class.getSimpleName();

From source file com.timecontents.smartnotice.animate.AnimatedListViewAdapter.java

/**
 * Manages a List of objects to display in the AnimatedListView. When a new view needs to be displayed, it will
 * request that the AnimatedListViewObjectMapper populate the view, and then animated it.
 */
public class AnimatedListViewAdapter extends ArrayAdapter<JSONObject> {

From source file com.example.android.tourguide.ObjectAdapter.java

/**
 * {@link ObjectAdapter} is an {@link ArrayAdapter} that can provide the layout for each list item
 * based on a data source, which is a list of {@link Object} objects.
 */
public class ObjectAdapter extends ArrayAdapter<Object> {

From source file org.mifos.androidclient.util.listadapters.SimpleListAdapter.java

/**
 * Represents an adapter which can be used with standard lists.<br />
 * Is designed to work with entities which implement the {@link SimpleListItem}.
 */
public class SimpleListAdapter extends ArrayAdapter<SimpleListItem> {

From source file org.odk.collect.android.adapters.FileArrayAdapter.java

public class FileArrayAdapter extends ArrayAdapter<DriveListItem> {

    private Context context;
    private int id;
    private List<DriveListItem> items;
    private boolean enabled;

From source file org.ambient.control.config.MapAdapter.java

/**
 * ArrayAdapter to for the MapField. It creates a dual row layout for the key and value. Boolean values have a separate layout and
 * a simple action handler to set boolean values directly to the data model.
 * 
 * @author Florian Bornkessel
 *