Example usage for android.widget SearchView.OnQueryTextListener interface-usage

List of usage examples for android.widget SearchView.OnQueryTextListener interface-usage

Introduction

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

Usage

From source file com.possebom.openwifipasswordrecover.fragment.NetworkFragment.java

/**
 * Created by alexandre on 20/02/14.
 */
public class NetworkFragment extends ProgressFragment implements SearchView.OnQueryTextListener, NetworkListener {
    public static final String TAG = "NetworkFragment";
    private NetworkAdapter mAdapter;

From source file com.zuzhili.ui.fragment.DefaultFragment.java

public abstract class DefaultFragment extends ListFragment
        implements PullRefreshListView.OnRefreshRequestListener, PullRefreshListView.OnRefreshStateChangeListener,
        SearchView.OnCloseListener, SearchView.OnQueryTextListener {

    private SearchView mPlaceHolder;

From source file pranav.apps.amazing.hppoliceassistant.Search.java

/**
 * Created by Pranav Gupta on 12/10/2016.
 */
public class Search extends AppCompatActivity implements SearchView.OnQueryTextListener {
    private RecyclerView recyclerview;
    private List<ChallanDetails> challanDetails = new ArrayList<>();

From source file im.neon.activity.CountryPickerActivity.java

public class CountryPickerActivity extends AppCompatActivity
        implements CountryAdapter.OnSelectCountryListener, SearchView.OnQueryTextListener {

    public static final String EXTRA_IN_WITH_INDICATOR = "EXTRA_IN_WITH_INDICATOR";

    public static final String EXTRA_OUT_COUNTRY_NAME = "EXTRA_OUT_COUNTRY_NAME";

From source file asu.edu.msse.gpeddabu.moviedescriptions.AddMovie.java

public class AddMovie extends AppCompatActivity implements SearchView.OnQueryTextListener {
    private ArrayList<String> genreArr;
    private Context con = (Context) this;
    private ArrayAdapter<String> adapter;
    private SearchView searchView;
    private Spinner spinner;

From source file im.vector.activity.CountryPickerActivity.java

public class CountryPickerActivity extends AppCompatActivity
        implements CountryAdapter.OnSelectCountryListener, SearchView.OnQueryTextListener {

    public static final String EXTRA_IN_WITH_INDICATOR = "EXTRA_IN_WITH_INDICATOR";

    public static final String EXTRA_OUT_COUNTRY_NAME = "EXTRA_OUT_COUNTRY_NAME";

From source file com.sbox.absforpwdassi.demo.SearchViews.java

public class SearchViews extends SherlockActivity
        implements SearchView.OnQueryTextListener, SearchView.OnSuggestionListener {

    private static final String[] COLUMNS = { BaseColumns._ID, SearchManager.SUGGEST_COLUMN_TEXT_1, };

    private SuggestionsAdapter mSuggestionsAdapter;

From source file com.example.daniel.sounddroid.MainActivity.java

public class MainActivity extends AppCompatActivity implements SearchView.OnQueryTextListener {

    //trackJSON() returns the JSON string of the track we want, which we can put in a JSON object or Gson
    //
    private final String TAG = "meh";

From source file com.commonsware.android.fts.QuestionsFragment.java

public class QuestionsFragment extends ListFragment
        implements SearchView.OnQueryTextListener, MenuItem.OnActionExpandListener {
    interface Contract {
        void onQuestionClicked(String url);
    }

From source file com.collabora.xwperf.notxw_contacts.fragments.MainFragment.java

@EFragment(R.layout.fragment_main)
public class MainFragment extends Fragment implements SearchView.OnQueryTextListener {
    //Holder for our tabs
    public static Fragment newInstance() {
        return MainFragment_.builder().build();
    }