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 org.gots.allotment.adapter.ListAllotmentAdapter.java

public class ListAllotmentAdapter extends BaseAdapter implements OnClickListener {
    protected static final String TAG = "ListAllotmentAdapter";

    FragmentActivity mContext;

    private ListGrowingSeedAdapter listGrowingSeedAdapter;

From source file com.uf.togathor.adapters.UsersAdapter.java

/**
 * UsersAdapter
 * 
 * Adapter class for users.
 */

From source file org.devconmyanmar.apps.devcon.adapter.MyScheduleAdapter.java

/**
 * Created by yemyatthu on 11/11/14.
 */
public class MyScheduleAdapter extends BaseAdapter {
    private static final int VIEW_TYPE_FAVORITE = 1;
    private static final int VIEW_TYPE_BROWSE = 2;

From source file com.example.pyrkesa.frag.UserAdapter.java

/**
 * Created by pyrkesa on 02/02/2015.
 */
public class UserAdapter extends BaseAdapter {

    private Context context1;

From source file org.quantumbadger.redreader.adapters.MainMenuAdapter.java

public class MainMenuAdapter extends BaseAdapter {

    private final ArrayList<MainMenuItem> mainItems = new ArrayList<>(16);
    private final ArrayList<MainMenuItem> subredditItems = new ArrayList<>(100);
    private final RedditAccount user;
    private final MainMenuSelectionListener selectionListener;

From source file fr.cph.chicago.adapter.BusAdapter.java

/**
 * Adapter that will handle buses
 * 
 * @author Carl-Philipp Harmant
 * @version 1
 */

From source file com.facebook.GraphObjectAdapter.java

class GraphObjectAdapter<T extends GraphObject> extends BaseAdapter implements SectionIndexer {
    private static final PrioritizedWorkQueue downloadWorkQueue = new PrioritizedWorkQueue();

    private final int DISPLAY_SECTIONS_THRESHOLD = 1;
    private final int HEADER_VIEW_TYPE = 0;
    private final int GRAPH_OBJECT_VIEW_TYPE = 1;

From source file com.silentcircle.silentphone2.list.ShortcutCardsAdapter.java

/**
 * An adapter that displays call shortcuts from {@link com.android.dialer.calllog.CallLogAdapter}
 * in the form of cards.
 */
public class ShortcutCardsAdapter extends BaseAdapter {

From source file com.trk.aboutme.facebook.widget.GraphObjectAdapter.java

class GraphObjectAdapter<T extends GraphObject> extends BaseAdapter implements SectionIndexer {
    private static final int DISPLAY_SECTIONS_THRESHOLD = 1;
    private static final int HEADER_VIEW_TYPE = 0;
    private static final int GRAPH_OBJECT_VIEW_TYPE = 1;
    private static final int ACTIVITY_CIRCLE_VIEW_TYPE = 2;
    private static final int MAX_PREFETCHED_PICTURES = 20;

From source file com.mb.kids_mind.Adapter.SimilarListAdapter2.java

public class SimilarListAdapter2 extends BaseAdapter {
    private static final String TAG = "MainActivity";
    private final Context mContext;
    ArrayList<SimilarItem> list;
    public ScreenSlidePagerAdapter mPagerAdapter;
    Hashtable<String, Integer> map = new Hashtable<String, Integer>();