List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.modprobe.profit.CustomArrayAdapter.java
/** * This is a custom array adapter used to populate the listview whose items will * expand to display extra content in addition to the default display. */ public class CustomArrayAdapter extends ArrayAdapter<SuggestionExpandingListViewItem> {
From source file com.softminds.matrixcalculator.MatrixAdapter.java
public class MatrixAdapter extends ArrayAdapter<MatrixV2> { public MatrixAdapter(Context context, int t, ArrayList<MatrixV2> matrices) { super(context, t, matrices); }
From source file at.wada811.android.library.demos.loader.LoaderListAdapter.java
public class LoaderListAdapter extends ArrayAdapter<LoaderListItem> { private Context mContext; private LayoutInflater mLayoutInflater; private LoaderManager mLoaderManager; private Handler mHandler;
From source file com.hybris.mobile.adapter.CartAdapter.java
public class CartAdapter extends ArrayAdapter<CartItem> { private final List<CartItem> items; private final Context mContext; public CartAdapter(Context context, List<CartItem> values) {
From source file com.example.scb.quakereport_l2.EarthquakeAdapter.java
/**
* An {@link EarthquakeAdapter} knows how to create a list item layout for each earthquake
* in the data source (a list of {@link Earthquake} objects).
*
* These list item layouts will be provided to an adapter view like ListView
* to be displayed to the user.
From source file com.example.scb.quakereport_l3.EarthquakeAdapter.java
/**
* An {@link EarthquakeAdapter} knows how to create a list item layout for each earthquake
* in the data source (a list of {@link Earthquake} objects).
*
* These list item layouts will be provided to an adapter view like ListView
* to be displayed to the user.
From source file com.example.mcervantes.quakereport.EarthquakeAdapter.java
/**
* An {@link EarthquakeAdapter} knows how to create a list item layout for each earthquake
* in the data source (a list of {@link Earthquake} objects).
*
* These list item layouts will be provided to an adapter view like ListView
* to be displayed to the user.
From source file org.alfresco.mobile.android.application.fragments.node.browser.FolderPathAdapter.java
public class FolderPathAdapter extends ArrayAdapter<String> { private String item; private AlfrescoAccount account; public FolderPathAdapter(FragmentActivity context, int textViewResourceId, List<String> objects) {
From source file com.vrem.wifianalyzer.wifi.channelavailable.ChannelAvailableAdapter.java
class ChannelAvailableAdapter extends ArrayAdapter<WiFiChannelCountry> { ChannelAvailableAdapter(@NonNull Context context, @NonNull List<WiFiChannelCountry> wiFiChannelCountries) { super(context, R.layout.channel_available_details, wiFiChannelCountries); } @NonNull
From source file com.gammalabs.wifianalyzer.wifi.ChannelAvailableAdapter.java
class ChannelAvailableAdapter extends ArrayAdapter<WiFiChannelCountry> { ChannelAvailableAdapter(@NonNull Context context, @NonNull List<WiFiChannelCountry> wiFiChannelCountries) { super(context, R.layout.channel_available_details, wiFiChannelCountries); } @NonNull