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.hybris.mobile.app.commerce.adapter.StoreListAdapter.java

public class StoreListAdapter extends ArrayAdapter<PointOfService> {

    private static final String TAG = StoreListAdapter.class.getCanonicalName();

    private DeviceLocation mDeviceLocation;
    private StoreListFragment.MapActions mMapActions;

From source file com.dmbstream.android.adapter.ConcertListAdapter.java

public class ConcertListAdapter extends ArrayAdapter<Concert> {
    private static final String TAG = ConcertListAdapter.class.getSimpleName();
    private final LayoutInflater inflater;
    private RootActivity rootActivity = null;
    private int page = 0;
    private long lastUpdate = -1;

From source file com.normalexception.app.rx8club.view.pm.PMViewArrayAdapter.java

public class PMViewArrayAdapter extends ArrayAdapter<PMModel> {
    private List<PMModel> data;

    private Logger TAG = LogManager.getLogger(this.getClass());

    /**

From source file org.openmrs.client.adapters.PatientArrayAdapter.java

public class PatientArrayAdapter extends ArrayAdapter<Patient> {
    private Activity mContext;
    private List<Patient> mItems;
    private int mResourceID;

    class ViewHolder {

From source file org.computeforcancer.android.attach.SelectionListAdapter.java

public class SelectionListAdapter extends ArrayAdapter<ProjectListEntry> {

    private ArrayList<ProjectListEntry> entries;
    private FragmentActivity activity;

    public SelectionListAdapter(FragmentActivity a, int textViewResourceId, ArrayList<ProjectListEntry> entries) {

From source file com.normalexception.app.rx8club.view.category.CategoryViewArrayAdapter.java

/**
 * Custom category view array adapter
 */
public class CategoryViewArrayAdapter extends ArrayAdapter<CategoryModel> {
    private List<CategoryModel> data;

From source file edu.berkeley.boinc.adapter.NoticesListAdapter.java

public class NoticesListAdapter extends ArrayAdapter<Notice> {
    private ArrayList<Notice> entries;
    private Activity activity;

    public NoticesListAdapter(Activity a, int textViewResourceId, ArrayList<Notice> entries) {
        super(a, textViewResourceId, entries);

From source file edu.berkeley.boinc.attach.BatchConflictListAdapter.java

public class BatchConflictListAdapter extends ArrayAdapter<ProjectAttachWrapper> {

    private ArrayList<ProjectAttachWrapper> entries;
    private Activity activity;
    private FragmentManager fmgr;

From source file com.gumgoose.app.quakebuddy.QuakeAdapter.java

/**
 * Class that binds earthquake data from the USGS API service to the ListView
 */
public class QuakeAdapter extends ArrayAdapter<Quake> {

    /**

From source file com.normalexception.app.rx8club.view.thread.ThreadViewArrayAdapter.java

/**
 * A custom view adapter for a thread view object
 */
public class ThreadViewArrayAdapter extends ArrayAdapter<ThreadModel> {

    private Logger TAG = LogManager.getLogger(this.getClass());