List of usage examples for android.widget BaseAdapter subclass-usage
From source file org.wso2.iot.agent.adapters.AppDrawerAdapter.java
public class AppDrawerAdapter extends BaseAdapter { private String TAG = AppDrawerAdapter.class.getSimpleName(); private static final String ACTION_INSTALL_COMPLETE = "INSTALL_COMPLETED"; private static final String APP_STATE_DOWNLOAD_STARTED = "DOWNLOAD_STARTED"; private static final String APP_STATE_DOWNLOAD_COMPLETED = "DOWNLOAD_COMPLETED";
From source file com.liquid.wallpapers.free.core.favourites.FavouriteListAdapter.java
/** * @author Daniel Czerwonk * */ public class FavouriteListAdapter extends BaseAdapter {
From source file org.jared.synodroid.ds.adapter.DetailAdapter.java
/** * An adaptor for task's details. This adaptor aims to create a view for each detail in the listView * * @author eric.taix at gmail.com */ public class DetailAdapter extends BaseAdapter implements AdapterView.OnItemClickListener {
From source file com.manning.androidhacks.hack028.adapter.ImageAdapter.java
public class ImageAdapter extends BaseAdapter { private Context mContext; private Integer[] mImageIds = { R.drawable.sample_0, R.drawable.sample_1, R.drawable.sample_2, R.drawable.sample_3, R.drawable.sample_4, R.drawable.sample_5, R.drawable.sample_6, R.drawable.sample_7 };
From source file com.streaming.sweetplayer.adapter.PlaylistAdapter.java
/** * This adapter class GETS the data from the provided songs URL. and SET the data info into the Widgets. */ public class PlaylistAdapter extends BaseAdapter { private ArrayList<HashMap<String, String>> mDataArrayList; private DataBaseHelper mDataBase;
From source file com.dm.wallpaper.board.adapters.FilterAdapter.java
public class FilterAdapter extends BaseAdapter { private final Context mContext; private final List<Category> mCategories; private final boolean mIsMuzei;
From source file br.liveo.adapter.NavigationLiveoAdapter.java
public class NavigationLiveoAdapter extends BaseAdapter { private int mColorIcon = 0; private int mColorName = 0; private int mColorCounter = 0; private int mColorSeparator = 0;
From source file org.angellist.angellistmobile.UserRolesJSONAdapter.java
public class UserRolesJSONAdapter extends BaseAdapter implements ListAdapter { private final Activity activity; private final JSONArray jsonArray; public ImageLoader imageLoader;
From source file fr.steren.cloudcup.ImageAdapter.java
public class ImageAdapter extends BaseAdapter { private static final String LOG_TAG = ImageAdapter.class.getSimpleName(); class DownloadImageAsyncTask extends AsyncTask<Void, Void, Void> { private final String imageUrl;
From source file hu.balazsbakai.sq.ui.adapter.AddPublicServersAdapter.java
public class AddPublicServersAdapter extends BaseAdapter { private LayoutInflater mInflater = null; private ArrayList<Server> sonarQubeServers; private final class AutoPopulateViewHolder { private TextView serverURL;