List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.facebook.android.friendsmash.RequestUserArrayAdapter.java
public class RequestUserArrayAdapter extends ArrayAdapter<JSONObject> { private final Context context; private final List<JSONObject> users; public RequestUserArrayAdapter(Context context, List<JSONObject> users) { super(context, R.layout.request_list_item_view, users);
From source file trendoidtechnologies.com.navigationdrawerlibrary.adapter.DrawerProfileAdapter.java
/** * Adapter to be used with {@link trendoidtechnologies.com.navigationdrawerlibrary.DrawerView} to display a list of drawer items. */ public class DrawerProfileAdapter extends ArrayAdapter<DrawerProfile> { private DrawerTheme drawerTheme;
From source file com.hybris.mobile.app.commerce.adapter.CategoryListPreferenceAdapter.java
/** * Adapter categories on the sync settings page */ public class CategoryListPreferenceAdapter extends ArrayAdapter<CategoryHierarchy> { private OnSelectCategoryListener mOnSelectCategoryListener;
From source file org.npr.android.news.NewsListAdapter.java
public class NewsListAdapter extends ArrayAdapter<Story> { private static final String LOG_TAG = NewsListAdapter.class.getName(); private LayoutInflater inflater; private static Typeface headlineTypeface = null; public NewsListAdapter(Context context) {
From source file org.sirimangalo.meditationplus.AdapterMed.java
/** * Created by noah on 10/15/14. */ public class AdapterMed extends ArrayAdapter<JSONObject> {
From source file org.npr.android.news.StationListAdapter.java
public class StationListAdapter extends ArrayAdapter<Station> { private static final String LOG_TAG = StationListAdapter.class.getName(); private List<Station> data; protected Context context; FavoriteStationsRepository favoriteStationsRepository;
From source file edu.berkeley.boinc.attach.SelectionListAdapter.java
public class SelectionListAdapter extends ArrayAdapter<ProjectListEntry> { private ArrayList<ProjectListEntry> entries; private FragmentActivity activity; public SelectionListAdapter(FragmentActivity a, int textViewResourceId, ArrayList<ProjectListEntry> entries) {
From source file com.capstone.transit.trans_it.PlacesAutoCompleteAdapter.java
/** * Created by Thomas on 3/30/2015. */ public class PlacesAutoCompleteAdapter extends ArrayAdapter<String> implements Filterable { private ArrayList<String> resultList;
From source file com.scooter1556.sms.android.adapter.MediaFolderListAdapter.java
public class MediaFolderListAdapter extends ArrayAdapter<MediaFolder> { private final Context context; private List<MediaFolder> items; public MediaFolderListAdapter(Context context, List<MediaFolder> items) {
From source file com.manning.androidhacks.hack026.SectionAdapter.java
public class SectionAdapter extends ArrayAdapter<String> { private Activity activity; public SectionAdapter(Activity activity, String[] objects) { super(activity, R.layout.list_item, R.id.label, objects);