Anand Kumar
Results
1
comments of
Anand Kumar
FloatingSearchView floatingSearchView = findViewById(R.id.floating_search_view); floatingSearchView.setOnSearchListener(new FloatingSearchView.OnSearchListener() { @Override public void onSuggestionClicked(SearchSuggestion searchSuggestion) { } @Override public void onSearchAction(String currentQuery) { Toast.makeText(YourActivity.this, currentQuery, Toast.LENGTH_SHORT).show(); } }); Hope this solves your issue.