List of usage examples for android.widget BaseAdapter subclass-usage
From source file net.bither.adapter.cold.AddressOfColdFragmentListAdapter.java
public class AddressOfColdFragmentListAdapter extends BaseAdapter { private FragmentActivity activity; private List<Address> privates; public AddressOfColdFragmentListAdapter(FragmentActivity activity, List<Address> privates) {
From source file com.poloure.simplerss.adapters.LinkedMapAdapter.java
public abstract class LinkedMapAdapter<K, V> extends BaseAdapter { private final LinkedMap m_map; LinkedMapAdapter(Map<K, V> map) { m_map = null == map ? new LinkedMap(1) : new LinkedMap(map); notifyDataSetChanged();
From source file de.gebatzens.sia.SchoolListAdapter.java
public class SchoolListAdapter extends BaseAdapter { List<School> list; SetupActivity c; public SchoolListAdapter(SetupActivity c, List<School> list) {
From source file com.futureplatforms.kirin.ui.JSListAdapter.java
public class JSListAdapter extends BaseAdapter { private final JSONArray mArray; private final KirinRowRenderer<JSONObject> mItemRenderer; private final int mRowLayout;
From source file io.github.tjg1.nori.adapter.APISettingsListAdapter.java
/** Populates the {@link android.widget.ListView} with data from {@link io.github.tjg1.nori.database.APISettingsDatabase}. */ public class APISettingsListAdapter extends BaseAdapter implements LoaderManager.LoaderCallbacks<List<Pair<Integer, SearchClient.Settings>>>, AdapterView.OnItemClickListener { //region Loader IDs /** {@link io.github.tjg1.nori.database.APISettingsDatabase} loader ID. */
From source file org.libreoffice.impressremote.adapter.SlidesGridAdapter.java
public class SlidesGridAdapter extends BaseAdapter { private final LayoutInflater mLayoutInflater; private final ImageLoader mImageLoader; private final SlideShow mSlideShow;
From source file net.idlesoft.android.apps.github.adapters.CommitListAdapter.java
public class CommitListAdapter extends BaseAdapter { public static class ViewHolder { public TextView commit_date; public TextView commit_shortdesc;
From source file org.kepennar.android.client.social.facebook.FacebookProfileListAdapter.java
/** * @author Roy Clarkson */ public class FacebookProfileListAdapter extends BaseAdapter { private FacebookProfile _facebookProfile; private final LayoutInflater _layoutInflater;
From source file ru.orangesoftware.financisto.adapter.SummaryEntityListAdapter.java
public class SummaryEntityListAdapter extends BaseAdapter { private final Context context; private final SummaryEntityEnum[] entities; private final LayoutInflater inflater;
From source file net.dahanne.android.google.client.GoogleProfileListAdapter.java
/** * This class is based on the FacebookProfileListAdapter by Roy Clarkson */ public class GoogleProfileListAdapter extends BaseAdapter { private LegacyGoogleProfile googleProfile; private final LayoutInflater layoutInflater;