List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.pipit.agc.adapter.DayPickerAdapter.java
/** * Created by Eric on 1/9/2016. */ public class DayPickerAdapter extends ArrayAdapter<String> { private final Context context; private List<DayRecord> allPreviousDays;
From source file org.enbyted.android.zseinfo.view.EmptyListAdapter.java
/** * Created by Bartosz Grabias on 20.02.14. */ public class EmptyListAdapter extends ArrayAdapter<String> { public EmptyListAdapter(Context context) { super(context, R.layout.row_weekday_entry, new String[0]);
From source file com.hybris.mobile.adapter.AddressAdapter.java
public class AddressAdapter extends ArrayAdapter<CartDeliveryAddress> { private final List<CartDeliveryAddress> addresses; private int checked = -1; public void setChecked(int checked) {
From source file pl.pwr.guide.interior.model.URLHistory.java
public class URLHistory extends ArrayAdapter<URLHistory.HistoryItem> { private ArrayList<URLHistory.HistoryItem> spareCopy = new ArrayList<URLHistory.HistoryItem>(); public URLHistory(Context context, int resource) { super(context, resource, new ArrayList<URLHistory.HistoryItem>()); }
From source file com.commonsware.android.vidtry.URLHistory.java
class URLHistory extends ArrayAdapter<URLHistory.HistoryItem> { private ArrayList<URLHistory.HistoryItem> spareCopy = new ArrayList<URLHistory.HistoryItem>(); URLHistory(Context context, int resource) { super(context, resource, new ArrayList<URLHistory.HistoryItem>()); }
From source file com.rjones.languagedictionary.WordAdapter.java
public class WordAdapter extends ArrayAdapter<Word> { private int mColorResourceId; // this will change the new intent color public WordAdapter(Activity context, ArrayList<Word> words, int colorResourceId) { super(context, 0, words);
From source file com.example.android.bangla.WordAdapter.java
/** * Word Adapter class which will manage list items for different layout by * extending Default ArrayAdapter with Word type of data */ public class WordAdapter extends ArrayAdapter<Word> {
From source file com.example.android.saddacampus.WordAdapter.java
public class WordAdapter extends ArrayAdapter<Word> { private int mColorResourceId; public WordAdapter(Context context, ArrayList<Word> words, int colorResourceId) { super(context, 0, words);
From source file fr.cph.chicago.core.adapter.PopupBusAdapter.java
/** * @author Carl-Philipp Harmant * @version 1 */ public class PopupBusAdapter extends ArrayAdapter<String> {
From source file com.example.android.gft.WordAdapter.java
/** * {@link WordAdapter} is an {@link ArrayAdapter} that can provide the layout for each list item * based on a data source, which is a list of {@link Word} objects. */ public class WordAdapter extends ArrayAdapter<Word> {