Example usage for android.support.v4.widget CursorAdapter subclass-usage

List of usage examples for android.support.v4.widget CursorAdapter subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.widget CursorAdapter subclass-usage.

Usage

From source file com.emilsjolander.components.stickylistheaders.StickyListHeadersCursorAdapter.java

/**
 * 
 * @author Emil Sjlander
 * 
 * 
 *         Copyright 2012 Emil Sjlander

From source file io.pivotal.arca.adapters.SupportItemAdapter.java

public class SupportItemAdapter extends CursorAdapter {

    private final CursorAdapterHelper mHelper;

    public SupportItemAdapter(final Context context, final Collection<Binding> bindings) {
        super(context, null, 0);

From source file de.incoherent.osaac.adapters.ExemptionListAdapter.java

public class ExemptionListAdapter extends CursorAdapter {
    static class ViewHolder {
        TextView title;
        TextView nextExemption;
    }

From source file nintao.com.android.study.sunshine.ForecastAdapter.java

/**
 * {@link ForecastAdapter} exposes a list of weather forecasts
 * from a {@link android.database.Cursor} to a {@link android.widget.ListView}.
 */
public class ForecastAdapter extends CursorAdapter {

From source file com.dogmalabs.wonderadapter.adapter.WCursorAdapter.java

public class WCursorAdapter<W extends CursorWonder<W>> extends CursorAdapter {

    // Controller/logic fields
    private W wonder;
    private LayoutInflater inflater;

From source file id.ridon.keude.views.AppListAdapter.java

abstract public class AppListAdapter extends CursorAdapter {

    private Context mContext;
    private LayoutInflater mInflater;
    private DisplayImageOptions displayImageOptions;

From source file cm.aptoide.pt.adapters.InstalledAdapter.java

public class InstalledAdapter extends CursorAdapter {

    public InstalledAdapter(Context context, Cursor c, int flags, Database db) {
        super(context, c, flags);
    }

From source file fr.mixit.android.ui.adapters.SessionsAdapter.java

public class SessionsAdapter extends CursorAdapter {

    protected LayoutInflater mInflater;
    protected boolean mDisplayStar = true;
    protected boolean mDisplayPastSessionsInGrey = true;
    protected TalkItemView.StarListener mStarListener;

From source file de.uni_weimar.m18.anatomiederstadt.LevelListAdapter.java

public class LevelListAdapter extends CursorAdapter {

    public LevelListAdapter(Context context, Cursor c, int flags) {
        super(context, c, flags);
    }

From source file com.stoyanr.feeder.activity.ChannelsAdapter.java

public class ChannelsAdapter extends CursorAdapter implements Filterable {

    private HashMap<Long, ChannelView> views;

    public ChannelsAdapter(Context context, Cursor c) {
        super(context, c, FLAG_REGISTER_CONTENT_OBSERVER);