MaterialSearchBar icon indicating copy to clipboard operation
MaterialSearchBar copied to clipboard

detect on submit

Open aytekin opened this issue 4 years ago • 1 comments

Hi,i using this component, firstly thank you for all ,great work how can i detect on submit event when client click the search button on keyboard?

aytekin avatar Oct 14 '19 16:10 aytekin

implement listener to your activity/fragment : MaterialSearchBar.OnSearchActionListener

set the listener : searchBar.setOnSearchActionListener(this);

this will be called when user clicks on search button on keyboard.

 @Override
    public void onSearchConfirmed(CharSequence text) {
        Toast.makeText(context,text, Toast.LENGTH_SHORT).show();
    }

paktech1 avatar Oct 14 '19 23:10 paktech1