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.kepennar.android.client.social.twitter.TwitterTimelineListAdapter.java

/**
 * @author Roy Clarkson
 */
public class TwitterTimelineListAdapter extends BaseAdapter {
    private List<Tweet> _tweets;
    private final LayoutInflater _layoutInflater;

From source file org.kepennar.android.client.social.facebook.FacebookFeedListAdapter.java

/**
 * @author Roy Clarkson
 */
public class FacebookFeedListAdapter extends BaseAdapter {
    private List<Post> _entries;
    private final LayoutInflater _layoutInflater;

From source file org.kepennar.android.client.social.twitter.TwitterProfileListAdapter.java

/**
 * @author Roy Clarkson
 */
public class TwitterProfileListAdapter extends BaseAdapter {
    private TwitterProfile _twitterProfile;
    private final LayoutInflater _layoutInflater;

From source file com.springsource.greenhouse.twitter.TweetsListAdapter.java

/**
 * @author Roy Clarkson
 */
public class TweetsListAdapter extends BaseAdapter {

    private List<Tweet> tweets;

From source file scu.mingyuan.com.carmanager.app.adapter.MyCarAdapter.java

/**
 * Created by  on 16/3/3.
 */
public class MyCarAdapter extends BaseAdapter implements AbsListView.OnScrollListener {

    // View_Type

From source file at.ac.uniklu.mobile.sportal.ui.GenericListFragmentAdapter.java

/**
 * Generic base adapter that takes care of recycling views. Extension classes only need to update the
 * views ({@link #updateView(int, View)}) and do not need to take care of the view recycling process.
 */
public abstract class GenericListFragmentAdapter<T> extends BaseAdapter {

From source file com.nineducks.hereader.ui.HEMessagesAdapter.java

public class HEMessagesAdapter extends BaseAdapter {

    private List<ListFragmentItem> items;
    private LayoutInflater inflater;
    private static SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm");

From source file org.odk.collect.android.adapters.IconMenuListAdapter.java

/**
 * Adapter for List of options with icons
 */
public class IconMenuListAdapter extends BaseAdapter {

    private final Context context;

From source file com.fuxuemingzhu.threaduitest.adapter.ListViewAdapter.java

public class ListViewAdapter extends BaseAdapter {

    private final Context context;
    private final LayoutInflater inflater;
    private List<String> urls;

From source file galleryfinal.adapter.CommonBaseAdapter.java

/**
 * Desction:
 * Author:pengjianbo
 * Date:15/7/30 ?10:21
 */
abstract class CommonBaseAdapter<VH extends CommonBaseAdapter.ViewHolder, T> extends BaseAdapter {