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.devgmail.mitroshin.totutu.util.StationCursorAdapter.java

/**
 Copyright 2017 Mitroshin Dmitry (mitroshin.develop@gmail.com)
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

From source file wishlist.CursorAdapter.java

/**
 * Cursor adapter with helpers
 */
public abstract class CursorAdapter extends android.support.v4.widget.CursorAdapter {

    /**

From source file com.cocosw.adapter.CursorAdapter.java

/**
 * Cursor adapter with helpers
 */
public abstract class CursorAdapter extends android.support.v4.widget.CursorAdapter {

    /**

From source file com.kevinsawicki.wishlist.CursorAdapter.java

/**
 * Cursor adapter with helpers
 */
public abstract class CursorAdapter extends android.support.v4.widget.CursorAdapter {

    /**

From source file com.github.kevinsawicki.wishlist.CursorAdapter.java

/**
 * Cursor adapter with helpers
 */
public abstract class CursorAdapter extends android.support.v4.widget.CursorAdapter {

    /**

From source file com.lkunic.libs.apptoolbox.twopane.ItemListCursorAdapter.java

/**
 * Base for creating an adapter that populates a list with cursor data received from a data set.
 */
public abstract class ItemListCursorAdapter extends CursorAdapter {
    private LayoutInflater mLayoutInflater;

From source file org.mozilla.gecko.home.PanelViewAdapter.java

class PanelViewAdapter extends CursorAdapter {
    private static final int VIEW_TYPE_ITEM = 0;
    private static final int VIEW_TYPE_BACK = 1;

    private final ViewConfig viewConfig;
    private FilterManager filterManager;

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

public class MembersAdapter extends CursorAdapter {

    public MembersAdapter(Context ctx) {
        super(ctx, null, 0);
    }

From source file com.bttendance.adapter.kit.InstantCursorAdapter.java

/**
 * Class constructs a custom {@link android.widget.CursorAdapter} by mapping <b>Instant*</b> annotated
 * methods from you model to {@link android.view.View}s on your layout. Methods can be annotated using the
 * {@link InstantText} annotation.
 *
 * @param <T> The model you want to back using the {@link InstantAdapter}.

From source file com.rowland.hashtrace.ui.adapters.GraphAdapter.java

/**
 * @author Rowland
 *
 */
public class GraphAdapter extends CursorAdapter {