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 cx.ring.adapters.AccountSelectionAdapter.java

public class AccountSelectionAdapter extends BaseAdapter {

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

    private final List<Account> all_accounts = new ArrayList<>();
    private final List<Account> accounts = new ArrayList<>();

From source file cs.umass.edu.prepare.view.custom.CalendarAdapter.java

/**
 * A custom adapter intended to populate the gridview calendar with custom views. This
 * allows each date cell to contain a daily adherence overview in the form of color-coded
 * squares, giving the user a meaningful yet intuitive overview of monthly adherence.
 */
public class CalendarAdapter extends BaseAdapter {

From source file pk.edu.ucp.fall16_mad_c.RecipeAdapter.java

public class RecipeAdapter extends BaseAdapter {

    public static final String TAG = RecipeAdapter.class.getSimpleName();
    static int createCount = 0;

    private Context mContext;

From source file org.angellist.angellistmobile.FeedJSONAdapter.java

public class FeedJSONAdapter extends BaseAdapter implements ListAdapter {

    private final Activity activity;
    private final JSONArray jsonArray;
    public ImageLoader imageLoader;

From source file pk.edu.ucp.fall16_mad_c.AdvRecipeAdapter.java

public class AdvRecipeAdapter extends BaseAdapter {

    public static final String TAG = AdvRecipeAdapter.class.getSimpleName();
    static int createCount = 0;

    private Context mContext;

From source file com.siso.app.adapter.GoodsDetailAdapter.java

/**
 * description :
 *
 * @version 1.0
 * @author Owater
 * @createtime : 2015-3-30 ?2:16:24

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

public class ServerAdapter extends BaseAdapter {

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

From source file org.namelessrom.devicecontrol.modules.filepicker.FileAdapter.java

public class FileAdapter extends BaseAdapter {

    private final Context context;

    private ArrayList<File> files;

From source file com.lovejoy777sarootool.rootool.adapters.BrowserListAdapter.java

public class BrowserListAdapter extends BaseAdapter {
    private final LayoutInflater mInflater;
    private final Resources mResources;
    private ArrayList<String> mDataSource;

    public BrowserListAdapter(Context context, LayoutInflater inflater) {

From source file codingpractice.renard314.com.products.ProductGridAdapter.java

/**
 * Created by renard on 10/04/15.
 * Provides the views for ProductGridFragment.
 */
public class ProductGridAdapter extends BaseAdapter {