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.google.samples.apps.topeka.adapter.ScoreAdapter.java

/**
 * Adapter for displaying score cards.
 */
public class ScoreAdapter extends BaseAdapter {

    private final Category mCategory;

From source file itkach.aard2.SettingsListAdapter.java

public class SettingsListAdapter extends BaseAdapter implements SharedPreferences.OnSharedPreferenceChangeListener {

    final static int CSS_SELECT_REQUEST = 13;

    private final static String TAG = SettingsListAdapter.class.getSimpleName();
    private final Activity context;

From source file com.google.samples.apps.topeka.view.quiz.ScoreAdapter.java

/**
 * Adapter for displaying score cards.
 */
public class ScoreAdapter extends BaseAdapter {

    private final Category mCategory;

From source file it.gulch.linuxday.android.adapters.EventsAdapter.java

public class EventsAdapter extends BaseAdapter {
    private static final DateFormat TIME_DATE_FORMAT = DateUtils.getTimeDateFormat();

    private final LayoutInflater inflater;

    private final int titleTextSize;

From source file ua.com.spacetv.mycookbook.tools.ListAdapter.java

/**
 * Created by Roman Turas on 25/11/2015.
 */
public class ListAdapter extends BaseAdapter implements Constants {
    Context mContext;
    ArrayList<ListData> arrayData;

From source file com.fabernovel.alertevoirie.utils.JSONAdapter.java

public class JSONAdapter extends BaseAdapter {
    protected static final int TYPE_CATEGORY = 0;
    protected static final int TYPE_ITEM = 1;

    private JSONArray data;
    private LayoutInflater inflater;

From source file com.findme.adapter.ImageListAdapter.java

public class ImageListAdapter extends BaseAdapter {
    /** The inflator used to inflate the XML layout */
    private LayoutInflater inflator;

    /** A list containing some sample data to show. */
    private JSONArray dataList;

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

public class TimersAdapter extends BaseAdapter {

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

    private SharedPrefUtil mSharedPrefs;

From source file de.damdi.fitness.activity.start_training.FExListAdapter.java

public class FExListAdapter extends BaseAdapter {

    private FragmentActivity mActivity;
    private static LayoutInflater mInflater = null;

    private List<FitnessExercise> mFitnessExerciseList;

From source file com.thelastcrusade.soundstream.util.MusicListAdapter.java

public class MusicListAdapter<T extends SongMetadata> extends BaseAdapter {
    private final String TAG = MusicListAdapter.class.getSimpleName();

    private Context mContext;
    private List<T> metadataList;
    private UserList users;