Example usage for android.widget Filterable interface-usage

List of usage examples for android.widget Filterable interface-usage

Introduction

In this page you can find the example usage for android.widget Filterable interface-usage.

Usage

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 net.gsantner.opoc.ui.FilesystemDialogAdapter.java

@SuppressWarnings({ "WeakerAccess", "unused" })
public class FilesystemDialogAdapter
        extends RecyclerView.Adapter<FilesystemDialogAdapter.UiFilesystemDialogViewHolder>
        implements Filterable, View.OnClickListener, View.OnLongClickListener {
    //########################
    //## Static

From source file org.mifos.androidclient.util.listadapters.SimpleExpandableListAdapter.java

/**
 * Represents an adapter which can be used with expandable lists.<br />
 * Is designed to work with entities which implement the {@link SimpleListItem}.
 */
public class SimpleExpandableListAdapter extends BaseExpandableListAdapter implements Filterable {

From source file com.pentacog.mctracker.ServerListAdapter.java

/**
 * @author Affian
 *
 */
public class ServerListAdapter extends BaseAdapter implements Filterable {

From source file tw.geodoer.mGeoInfo.controller.PlaceAutocompleteAdapter.java

public class PlaceAutocompleteAdapter extends ArrayAdapter<PlaceAutocompleteAdapter.PlaceAutocomplete>
        implements Filterable {

    private static final String TAG = "PlaceAutocompleteAdapter";
    /**
     * Current results returned by this adapter.

From source file com.markupartist.sthlmtraveling.ui.adapter.PlaceSearchResultAdapter.java

public class PlaceSearchResultAdapter extends HeaderFooterRecyclerViewAdapter implements Filterable {

    private final Context mContext;
    private final LayoutInflater mLayoutInflator;
    List<PlaceItem> mData = new ArrayList<>();
    List<SearchFooterItem> mFooterData = new ArrayList<>();

From source file os.ransj.adapter.SimpleJsonAdapter.java

/**
 * An easy adapter to map static data to views defined in an XML file. You can specify the data
 * backing the list as an ArrayList of Maps. Each entry in the ArrayList corresponds to one row
 * in the list. The Maps contain the data for each row. You also specify an XML file that
 * defines the views used to display the row, and a mapping from keys in the Map to specific
 * views.

From source file eltos.simpledialogfragment.list.AdvancedAdapter.java

/**
 * Created by eltos on 04.12.2016.
 *
 * This adapter keeps track of checked items even if they are currently not visible
 * due to filtering.
 *

From source file uk.ac.hutton.ics.buntata.adapter.NodeAdapter.java

/**
 * The {@link NodeAdapter} takes care of the {@link BuntataNodeAdvanced} objects.
 *
 * @author Sebastian Raubach
 */
public abstract class NodeAdapter extends RecyclerView.Adapter<NodeAdapter.ViewHolder> implements Filterable {

From source file ch.ethz.tik.hrouting.providers.PlacesAutoCompleteAdapter.java

public class PlacesAutoCompleteAdapter extends ArrayAdapter<SearchNode> implements Filterable {

    private static final double BOUNDS_NORTHEAST_LON = 8.610260422;
    private static final double BOUNDS_SOUTHWEST_LON = 8.464171646;
    private static final double BOUNDS_NORTHEAST_LAT = 47.43669326;
    private static final double BOUNDS_SOUTHWEST_LAT = 47.32839174;