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.easemob.chatuidemo.adapter.ChatAllHistoryAdapter.java

/**
 * ?adpater
 * 
 */
public class ChatAllHistoryAdapter extends ArrayAdapter<EMConversation> {

From source file com.heinrichreimersoftware.materialdrawer.adapter.DrawerAdapter.java

/**
 * Adapter to be used with {@link com.heinrichreimersoftware.materialdrawer.DrawerView} to display a list of drawer items.
 */
public class DrawerAdapter extends ArrayAdapter<DrawerItem> {

    private int selectedPosition = -1;

From source file uk.org.downiesoft.slideshow.BrowserAdapter.java

public class BrowserAdapter extends ArrayAdapter<ZFile> {

    public static final String TAG = BrowserAdapter.class.getName();

    /**
     * Holder class for efficient recycling of adapter item views (avoids using findViewById repeatedly)

From source file com.github.rutvijkumar.twittfuse.adapters.TweetArrayAdapter.java

public class TweetArrayAdapter extends ArrayAdapter<Tweet> {

    private static final int RETWEET_IMG_WIDTH = 16;
    private static final int RETWEET_IMG_HEIGHT = 16;

    private Context context;

From source file de.geeksfactory.opacclient.frontend.ResultsAdapter.java

public class ResultsAdapter extends ArrayAdapter<SearchResult> {
    private List<SearchResult> objects;
    final int padding8dp;

    public ResultsAdapter(Context context, List<SearchResult> objects, OpacApi api) {
        super(context, R.layout.listitem_searchresult, objects);

From source file net.ustyugov.jtalk.adapter.ChatsSpinnerAdapter.java

public class ChatsSpinnerAdapter extends ArrayAdapter<RosterItem> implements SpinnerAdapter, View.OnClickListener {
    private JTalkService service;
    private SharedPreferences prefs;
    private Activity activity;
    private Spinner spinner;

From source file com.openerp.support.listview.OEListViewAdapter.java

/**
 * The Class OEListViewAdapter.
 */
public class OEListViewAdapter extends ArrayAdapter<OEListViewRows> {

    /** The context. */

From source file com.android.calendar.event.EventLocationAdapter.java

/**
 * An adapter for autocomplete of the location field in edit-event view.
 */
public class EventLocationAdapter extends ArrayAdapter<EventLocationAdapter.Result> implements Filterable {
    private static final String TAG = "EventLocationAdapter";
    // Constants for contacts query:

From source file com.yairkukielka.feedhungry.ListViewEntryArrayAdapter.java

public class ListViewEntryArrayAdapter extends ArrayAdapter<ListEntry> {
    private static final String TAG = ListViewEntryArrayAdapter.class.getSimpleName();
    private static final String ACTION = "action";
    private static final String TYPE = "type";
    private static final String ENTRIES = "entries";
    private static final String ENTRIES_IDS = "entryIds";

From source file de.azapps.mirakel.settings.model_settings.special_list.helper.SpecialListsConditionAdapter.java

public class SpecialListsConditionAdapter extends ArrayAdapter<SpecialListsViewHelper> {

    public static final int NEW_PROPERTY = -1;
    private static final String TAG = "SpecialListsConditionAdapter";
    private final LayoutInflater mInflater;