List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.anjalimacwan.adapter.NoteListAdapter.java
public class NoteListAdapter extends ArrayAdapter<NoteListItem> { public NoteListAdapter(Context context, ArrayList<NoteListItem> notes) { super(context, R.layout.row_layout, notes); } @Override
From source file cl.smartcities.isci.transportinspector.adapters.dialogAdapters.BusSelectionAdapter.java
public class BusSelectionAdapter extends ArrayAdapter<String> { private LayoutInflater inflater; private List<String> serviceList; private HashMap<String, ArrayList<Bus>> busMap; private DropDownButton activeDropdown; private DropDownButton inactiveDropdown;
From source file com.vrem.wifianalyzer.wifi.ChannelAvailableAdapter.java
class ChannelAvailableAdapter extends ArrayAdapter<WiFiChannelCountry> { protected ChannelAvailableAdapter(@NonNull Context context, @NonNull List<WiFiChannelCountry> wiFiChannelCountries) { super(context, R.layout.channel_available_details, wiFiChannelCountries); }
From source file org.ubicollab.nomad.home.RssListAdapter.java
public class RssListAdapter extends ArrayAdapter<JSONObject> { public RssListAdapter(Activity activity, List<JSONObject> imageAndTexts) { super(activity, 0, imageAndTexts); }
From source file io.github.tjg1.nori.adapter.GoogleIAPHandler.java
/** * An adapter populating the ListView with available Google donation amounts and handling * interactions with the Google Play in-app purchase service. */ public class GoogleIAPHandler extends ArrayAdapter<Pair<String, String>> implements IabHelper.OnIabSetupFinishedListener, IabHelper.QueryInventoryFinishedListener,
From source file com.wbrenna.gtfsoffline.timestopdescArrayAdapter.java
public class timestopdescArrayAdapter extends ArrayAdapter<String[]> /*<ArrayList<String[]>>*/ { //private static final String TAG = "timestopdescAdapter"; private final ArrayList<String[]> mDetails; private final LayoutInflater mInflater; private final int mLayout;
From source file com.spoiledmilk.ibikecph.favorites.FavoritesAdapter.java
public class FavoritesAdapter extends ArrayAdapter<FavoritesData> { public boolean isEditMode = false; private LeftMenu fragment; ArrayList<FavoritesData> data;
From source file com.gmail.at.faint545.adapters.RemoteQueueAdapter.java
public class RemoteQueueAdapter extends ArrayAdapter<JSONObject> { private Context mContext; private int resourceID; private ArrayList<JSONObject> jobs; public RemoteQueueAdapter(Context context, int resourceID, ArrayList<JSONObject> objects) {
From source file com.farmerbb.notepad.adapter.NoteListDateAdapter.java
public class NoteListDateAdapter extends ArrayAdapter<NoteListItem> { public NoteListDateAdapter(Context context, ArrayList<NoteListItem> notes) { super(context, R.layout.row_layout_date, notes); } @Override
From source file pl.bcichecki.rms.client.android.fragments.listAdapters.OutboxMessagesListAdapter.java
/** * @author Bartosz Cichecki * */ public class OutboxMessagesListAdapter extends ArrayAdapter<Message> {