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

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

Introduction

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

Usage

From source file it.sineo.android.tileMapEditor.MySimpleCursorAdapter.java

public class MySimpleCursorAdapter extends SimpleCursorAdapter {

    private final static String TAG = MySimpleCursorAdapter.class.getSimpleName();

    public MySimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) {
        super(context, layout, c, from, to, flags);

From source file com.manuelpeinado.multichoiceadapter.extras.actionbarcompat.MultiChoiceSimpleCursorAdapter.java

/**
 */
public abstract class MultiChoiceSimpleCursorAdapter extends SimpleCursorAdapter
        implements ActionMode.Callback, MultiChoiceAdapter {

    private MultiChoiceAdapterHelper helper = new MultiChoiceAdapterHelper(this) {

From source file org.mariotaku.twidere.adapter.SourceAutoCompleteAdapter.java

public class SourceAutoCompleteAdapter extends SimpleCursorAdapter implements Constants {

    private static final String[] COLUMNS = new String[] { CachedStatuses._ID, CachedStatuses.SOURCE };
    private static final String[] FROM = new String[0];
    private static final int[] TO = new int[0];

From source file com.manuelpeinado.multichoiceadapter.extras.actionbarsherlock.MultiChoiceSimpleCursorAdapter.java

/**
 */
public abstract class MultiChoiceSimpleCursorAdapter extends SimpleCursorAdapter
        implements ActionMode.Callback, MultiChoiceAdapter {

    private MultiChoiceAdapterHelper helper = new MultiChoiceAdapterHelper(this) {

From source file com.gaba.alex.trafficincidents.Adapter.IncidentsAdapter.java

public class IncidentsAdapter extends SimpleCursorAdapter {

    private Context mContext;
    private int mLayout;
    private final LayoutInflater mInflater;

From source file org.getlantern.firetweet.adapter.SourceAutoCompleteAdapter.java

public class SourceAutoCompleteAdapter extends SimpleCursorAdapter implements Constants {

    private static final String[] COLUMNS = new String[] { CachedStatuses._ID, CachedStatuses.SOURCE };
    private static final String[] FROM = new String[0];
    private static final int[] TO = new int[0];

From source file com.Duo.music.player.Drawers.NavigationDrawerLibrariesAdapter.java

public class NavigationDrawerLibrariesAdapter extends SimpleCursorAdapter implements SpinnerAdapter {

    private Context mContext;
    private SharedPreferences sharedPreferences;
    private LibrariesListViewHolder holder = null;

From source file com.bangz.smartmute.RulelistAdapter.java

/**
 * Created by royerwang on 15-01-23.
 */
public class RulelistAdapter extends SimpleCursorAdapter {

    private static final String TAG = RulelistAdapter.class.getSimpleName();

From source file com.jams.music.player.Drawers.NavigationDrawerLibrariesAdapter.java

public class NavigationDrawerLibrariesAdapter extends SimpleCursorAdapter implements SpinnerAdapter {

    private Context mContext;
    private SharedPreferences sharedPreferences;
    private LibrariesListViewHolder holder = null;

From source file cz.tomas.StockAnalyze.News.NewsListAdapter.java

/**
 * @author tomas
 *
 */
public class NewsListAdapter extends SimpleCursorAdapter {