List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.artur.softwareproject.BluetoothConnectionListAdapter.java
/** * Created by artur_000 on 03.05.2017. * This is a list of available bluetooth devices. */ class BluetoothConnectionListAdapter extends ArrayAdapter<String> {
From source file de.geeksfactory.opacclient.frontend.AccountListAdapter.java
public class AccountListAdapter extends ArrayAdapter<Account> { private List<Account> objects; private Context context; private boolean highlight = true; public AccountListAdapter(Context context, List<Account> objects) {
From source file com.witheyjr.listviewanimator.StableWrapperArrayAdapter.java
/**
* @author J Withey
* StableWrapperArrayAdapter makes some tweaks to a bog-standard adapter to make it compatible with
* the {@link ListViewAnimator}. Specifically, the {@link getItemIdForAnimation()} and related {@link mIdMap} are necessary
* to keep track of the correct items for animating, and just prior to notifyDataSetChanged(), the
* mIdMap should be updated with the method {@link reIdMapObjects}.
From source file com.dnielfe.manager.adapters.BrowserListAdapter.java
public class BrowserListAdapter extends ArrayAdapter<String> { private Context mContext; private Resources mResources; private ArrayList<String> mDataSource; private DrawableLruCache<String> mMimeTypeIconCache;
From source file org.alfresco.mobile.android.application.fragments.search.SearchOptionAdapter.java
/** * @since 1.4 * @author Jean Marie Pascal */ public class SearchOptionAdapter extends ArrayAdapter<Integer> { private Integer item;
From source file org.sirimangalo.meditationplus.AdapterChat.java
/** * Created by noah on 10/15/14. */ public class AdapterChat extends ArrayAdapter<JSONObject> { private final List<JSONObject> values;
From source file org.sufficientlysecure.keychain.ui.adapter.SubkeysAddedAdapter.java
public class SubkeysAddedAdapter extends ArrayAdapter<SaveKeyringParcel.SubkeyAdd> { private LayoutInflater mInflater; private Activity mActivity; private boolean mNewKeyring; public SubkeysAddedAdapter(Activity activity, List<SaveKeyringParcel.SubkeyAdd> data, boolean newKeyring) {
From source file com.manning.androidhacks.hack042.adapter.PoisAdapter.java
public class PoisAdapter extends ArrayAdapter<Poi> { private LayoutInflater mInflater; public PoisAdapter(Context context, int textViewResourceId, List<Poi> objects) { super(context, textViewResourceId, objects); mInflater = LayoutInflater.from(context);
From source file com.scoreminion.GameAdapter.java
/** * View adapter for each ScoresMessagesGame in a list. */ public class GameAdapter extends ArrayAdapter<ScoresMessagesGame> { private static final String TAG = GameAdapter.class.toString();
From source file com.dropbox.android.sample.ResAdapter.java
public class ResAdapter extends ArrayAdapter<String> { private Activity context; private int layoutResourceId; private Filestorage storage;