List of usage examples for android.widget BaseAdapter subclass-usage
From source file de.skubware.opentraining.activity.start_training.FExListAdapter.java
public class FExListAdapter extends BaseAdapter { private SherlockFragmentActivity mActivity; private static LayoutInflater mInflater = null; private List<FitnessExercise> mFitnessExerciseList;
From source file com.sawyer.advadapters.widget.NFJSONArrayAdapter.java
/**
* A non-filterable custom abstract {@link BaseAdapter} that is backed by a {@link JSONArray} of
* arbitrary objects. By default this class delegates view generation to subclasses.
* <p/>
* Designed to be a flexible and customizable solution for using JSONArray with an adapter but
* without the filtering mechanism. As a result, there is no need for {@code synchronized} blocks
From source file com.ubergeek42.WeechatAndroid.ChatLinesAdapter.java
public class ChatLinesAdapter extends BaseAdapter implements ListAdapter, OnSharedPreferenceChangeListener { private FragmentActivity activity = null; private Buffer buffer; private LinkedList<BufferLine> lines; private LayoutInflater inflater;
From source file com.oceansky.yellow.app.adapters.HistoryAdapter.java
/** * Adapter to display the playback history */ public class HistoryAdapter extends BaseAdapter { private static final String TAG = "HistoryAdapter";
From source file com.evvsoft.treeview.SimpleJsonTreeViewAdapter.java
public class SimpleJsonTreeViewAdapter extends BaseAdapter { private final static String[] KEYS_DEFAULT = { TreeViewNode.DEFAULT_ID_NAME, TreeViewNode.DEFAULT_ID_PARENT_NAME }; private final static int[] TO_DEFAULT = { android.R.id.text1 };
From source file com.BeeFramework.adapter.DebugListAdapter.java
public class DebugListAdapter extends BaseAdapter { private Context context; private LayoutInflater inflater; public DebugListAdapter(Context context) {
From source file it.redturtle.mobile.apparpav.MeteogramAdapter.java
/** * @author Nicola Senno */ public class MeteogramAdapter extends BaseAdapter { private final int TITOLO = 0;
From source file eu.trentorise.smartcampus.communicator.custom.MainAdapter.java
public class MainAdapter extends BaseAdapter { private Context context; private FragmentManager fragmentManager; public MainAdapter(Context c) { this.context = c;
From source file com.dm.material.dashboard.candybar.adapters.CreditsAdapter.java
public class CreditsAdapter extends BaseAdapter { private final Context mContext; private final List<Credit> mCredits; private final DisplayImageOptions.Builder mOptions;
From source file com.hideous.backpack.BackpackAdapter.java
public class BackpackAdapter extends BaseAdapter { private Context mContext; private JSONObject json; public ArrayList<TF2Item> backpackItems; private String jsondata; private ProgressDialog loadingJson;