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.app.jdy.adapter.DetailAdapter.java

/**
 * description :
 * 
 * @version 1.0
 * @author zhoufeng
 * @createtime : 2015-1-10 ?9:25:04

From source file com.niveales.library.utils.MyCursorAdapter.java

/**
 * Static library support version of the framework's {@link android.widget.CursorAdapter}.
 * Used to write apps that run on platforms prior to Android 3.0.  When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation.  See the framework SDK
 * documentation for a class overview.

From source file com.hyzs.onekeyhelp.home.adapter.HomeRightSlideAdapter.java

public class HomeRightSlideAdapter extends BaseAdapter {

    private Context context;
    private LayoutInflater mLayoutInflater;
    String[] type;
    int[] drawableResource;

From source file com.breadwallet.tools.adapter.TransactionListAdapter.java

/**
 * BreadWallet
 * <p>
 * Created by Mihail Gutan <mihail@breadwallet.com> on 7/7/16.
 * Copyright (c) 2016 breadwallet LLC
 * <p>

From source file org.exobel.routerkeygen.ui.WifiListAdapter.java

public class WifiListAdapter extends BaseAdapter implements PinnedSectionListView.PinnedSectionListAdapter {
    final private LayoutInflater inflater;
    private final Drawable[] wifiSignal;
    private final Drawable[] wifiSignalLocked;
    private final ArrayList<Item> listNetworks;
    private Typeface typeface = null;

From source file org.videolan.myvlc.core.gui.NewSidebarAdapter.java

public class NewSidebarAdapter extends BaseAdapter {
    public final static String TAG = "VLC/SidebarAdapter";

    public static class SidebarEntry {
        public String id;
        public String name;

From source file com.fexcon.demolayout.RecipeAdapter.java

public class RecipeAdapter extends BaseAdapter {

    public static final String TAG = RecipeAdapter.class.getSimpleName();
    public static final HashMap<String, Integer> LABEL_COLORS = new HashMap<String, Integer>() {
        {
            //    put("Low-Carb", R.color.colorLowCarb);

From source file de.skubware.opentraining.activity.start_training.TrainingEntryListAdapter.java

public class TrainingEntryListAdapter extends BaseAdapter {

    private SherlockFragmentActivity mActivity;
    private static LayoutInflater mInflater = null;

    private FitnessExercise mFEx;

From source file org.videolan.vlc2.gui.SidebarAdapter.java

public class SidebarAdapter extends BaseAdapter {
    public final static String TAG = "VLC/SidebarAdapter";

    static class SidebarEntry {
        String id;
        String name;

From source file com.xandy.calendar.selectcalendars.SelectCalendarsSyncAdapter.java

public class SelectCalendarsSyncAdapter extends BaseAdapter
        implements ListAdapter, AdapterView.OnItemClickListener, OnCalendarColorsLoadedListener {
    private static final String TAG = "SelCalsAdapter";
    private static final String COLOR_PICKER_DIALOG_TAG = "ColorPickerDialog";

    private static int COLOR_CHIP_SIZE = 30;