Example usage for android.widget ArrayAdapter subclass-usage

List of usage examples for android.widget ArrayAdapter subclass-usage

Introduction

In this page you can find the example usage for android.widget ArrayAdapter subclass-usage.

Usage

From source file com.amaze.filemanager.adapters.TabSpinnerAdapter.java

/**
 * Created by Vishal on 10/8/2014.
 */
public class TabSpinnerAdapter extends ArrayAdapter<String> {
    ArrayList<String> items;
    Context context;

From source file com.sentaroh.android.TextFileBrowser.ViewedFileListAdapter.java

public class ViewedFileListAdapter extends ArrayAdapter<ViewedFileListItem> {

    private ArrayList<ViewedFileListItem> mFileViewList = null;
    private Context mContext = null;
    @SuppressWarnings("unused")
    private Activity mActivity = null;

From source file nya.miku.wishmaster.ui.tabs.TabsAdapter.java

public class TabsAdapter extends ArrayAdapter<TabModel> {

    private final LayoutInflater inflater;
    private final Context context;
    private final TabsState tabsState;
    private final TabsIdStack tabsIdStack;

From source file com.nttec.everychan.ui.tabs.TabsAdapter.java

public class TabsAdapter extends ArrayAdapter<TabModel> {

    private final LayoutInflater inflater;
    private final Context context;
    private final TabsState tabsState;
    private final TabsIdStack tabsIdStack;

From source file com.ccjeng.weather.view.adapter.PlaceAutocompleteAdapter.java

/**
 * Adapter that handles Autocomplete requests from the Places Geo Data API.
 * {@link AutocompletePrediction} results from the API are frozen and stored directly in this
 * adapter. (See {@link AutocompletePrediction#freeze()}.)
 * <p/>
 * Note that this adapter requires a valid {@link com.google.android.gms.common.api.GoogleApiClient}.

From source file com.github.rutvijkumar.twittfuse.adapters.UserArrayAdapter.java

public class UserArrayAdapter extends ArrayAdapter<User> {

    private Context context;
    private TwitterClient client;

    // View lookup cache

From source file com.hybris.mobile.app.commerce.adapter.AccountPaymentAdapter.java

/**
 * Adapter for the products of the order
 */
public class AccountPaymentAdapter extends ArrayAdapter<PaymentDetails> {

    protected static final String TAG = AccountPaymentAdapter.class.getCanonicalName();

From source file com.javielinux.adapters.TweetsLinkAdapter.java

public class TweetsLinkAdapter extends ArrayAdapter<String> {

    public static class ViewHolder {

        public RelativeLayout containerLoading;
        public TextView txtLoading;

From source file com.vrem.wifianalyzer.wifi.ChannelRatingAdapter.java

class ChannelRatingAdapter extends ArrayAdapter<WiFiChannel> implements UpdateNotifier {
    private static final int MAX_CHANNELS_TO_DISPLAY = 10;

    private final TextView bestChannels;
    private ChannelRating channelRating;

From source file org.digitalcampus.oppia.adapter.SectionListAdapter.java

public class SectionListAdapter extends ArrayAdapter<Section> {

    public static final String TAG = SectionListAdapter.class.getSimpleName();
    public static final String TAG_PLACEHOLDER = "placeholder";

    private final Context ctx;