Example usage for android.widget BaseAdapter subclass-usage

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

Introduction

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

Usage

From source file com.notalenthack.blaster.CommandListAdapter.java

public class CommandListAdapter extends BaseAdapter {

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

    private ArrayList<Command> mCommands;
    private LayoutInflater mInflater;

From source file nl.hnogames.domoticz.Adapters.NFCAdapter.java

public class NFCAdapter extends BaseAdapter {

    @SuppressWarnings("unused")
    private static final String TAG = NFCAdapter.class.getSimpleName();
    public ArrayList<NFCInfo> data = null;
    private Context context;

From source file nl.hnogames.domoticz.Adapters.QRCodeAdapter.java

public class QRCodeAdapter extends BaseAdapter {

    @SuppressWarnings("unused")
    private static final String TAG = QRCodeAdapter.class.getSimpleName();
    public ArrayList<QRCodeInfo> data = null;
    private Context context;

From source file nl.hnogames.domoticz.Adapters.SpeechAdapter.java

public class SpeechAdapter extends BaseAdapter {

    @SuppressWarnings("unused")
    private static final String TAG = SpeechAdapter.class.getSimpleName();
    public ArrayList<SpeechInfo> data = null;
    private Context context;

From source file com.fastbootmobile.encore.app.adapters.PlaylistGridAdapter.java

/**
 * Adapter to display a list of {@link com.fastbootmobile.encore.model.Playlist} in a GridView
 */
public class PlaylistGridAdapter extends BaseAdapter {
    private static final String TAG = "PlaylistGridAdapter";

From source file os.ransj.adapter.SimpleJsonAdapter.java

/**
 * 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.

From source file net.zionsoft.obadiah.ui.adapters.TranslationListAdapter.java

public class TranslationListAdapter extends BaseAdapter {
    private static final int VIEW_TYPE_HEADER = 0;
    private static final int VIEW_TYPE_TRANSLATION = 1;
    private static final int VIEW_TYPE_COUNT = 2;

    private static class TranslationInfoHolder {

From source file fr.cph.chicago.core.adapter.SearchAdapter.java

/**
 * Adapter that will handle search
 *
 * @author Carl-Philipp Harmant
 * @version 1
 */

From source file eltos.simpledialogfragment.list.AdvancedAdapter.java

/**
 * Created by eltos on 04.12.2016.
 *
 * This adapter keeps track of checked items even if they are currently not visible
 * due to filtering.
 *

From source file nl.hnogames.domoticz.Adapters.LocationAdapter.java

public class LocationAdapter extends BaseAdapter {

    @SuppressWarnings("unused")
    private static final String TAG = LocationAdapter.class.getSimpleName();
    public ArrayList<LocationInfo> data = null;
    private Context context;