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.github.michalbednarski.intentslab.editor.BundleAdapter.java

public class BundleAdapter<OwnerFragment extends Fragment & BundleAdapter.BundleAdapterAggregate>
        extends BaseAdapter implements OnClickListener, OnItemClickListener, View.OnCreateContextMenuListener,
        EditorLauncher.EditorLauncherWithSandboxCallback {
    private static final String TAG = "BundleAdapter";
    private Bundle mBundle;
    private String[] mKeys = new String[0];

From source file com.parking.swipelistview.sample.adapters.MallAdapter.java

public class MallAdapter extends BaseAdapter {
    private static final String TAG = MallAdapter.class.getSimpleName();
    private List<MallItem> data;
    private Context ctx;
    private Activity act;
    private LoginData login;

From source file com.pixate.freestyle.fragment.GridViewFragment.java

/**
 * ImageAdapter for grid data
 */
class ImageAdapter extends BaseAdapter {

    /** Mainframe Activity context */

From source file com.mb.kids_mind.Adapter.SimilarListAdapterdetail.java

public class SimilarListAdapterdetail extends BaseAdapter {
    private static final String TAG = "MainActivity";
    private final Context mContext;
    ArrayList<SimilarItem> list;
    public ScreenSlidePagerAdapter mPagerAdapter;
    Hashtable<String, Integer> map = new Hashtable<String, Integer>();

From source file com.acc.android.util.widget.adapter.ImageAdapter.java

public class ImageAdapter extends BaseAdapter {
    // int mGalleryItemBackground;
    // private final static boolean isUseNew = true;
    private final Context context;
    // private final List<Bitmap> bitmaps = new ArrayList<Bitmap>();
    // private List<Cphoto> cPhotos = new ArrayList<Cphoto>();

From source file ca.ualberta.cmput301w14t08.geochan.adapters.ThreadViewAdapter.java

/**
 * Adapter used for displaying a ThreadComment in the ThreadViewFragment. It
 * inflates layouts for OP, top level comments and comment replies and listens to
 * the buttons of the listView elements that are visible at all times.
 * 
 * @author Artem Chikin

From source file m2.android.archetype.example.FacebookSdk.widget.GraphObjectAdapter.java

class GraphObjectAdapter<T extends GraphObject> extends BaseAdapter implements SectionIndexer {
    private static final int DISPLAY_SECTIONS_THRESHOLD = 1;
    private static final int HEADER_VIEW_TYPE = 0;
    private static final int GRAPH_OBJECT_VIEW_TYPE = 1;
    private static final int ACTIVITY_CIRCLE_VIEW_TYPE = 2;
    private static final int MAX_PREFETCHED_PICTURES = 20;

From source file org.videolan.vlc.gui.audio.AudioBrowserListAdapter.java

public class AudioBrowserListAdapter extends BaseAdapter implements SectionIndexer, IAudioClickHandler {
    public final static String TAG = "VLC/AudioBrowserListAdapter";

    public final static int TYPE_ARTISTS = 0;
    public final static int TYPE_ALBUMS = 1;
    public final static int TYPE_SONGS = 2;

From source file com.sawyer.advadapters.widget.JSONAdapter.java

/**
 * A custom abstract {@link BaseAdapter} that is backed by a {@link JSONArray} of arbitrary objects.
 * By default this class delegates view generation and defining the filtering logic to subclasses.
 * <p/>
 * Designed to be a flexible and customizable solution for using JSONArray with an adapter. It
 * exposes most of the JSONArray methods, provides active filtering support, and conveniently passes

From source file com.example.scrumptious.picker.GraphObjectAdapter.java

class GraphObjectAdapter extends BaseAdapter implements SectionIndexer {
    private static final int DISPLAY_SECTIONS_THRESHOLD = 1;
    private static final int HEADER_VIEW_TYPE = 0;
    private static final int GRAPH_OBJECT_VIEW_TYPE = 1;
    private static final int ACTIVITY_CIRCLE_VIEW_TYPE = 2;
    private static final int MAX_PREFETCHED_PICTURES = 20;