I am trying to trigger an onCancel() when the user exit of the search dialog by pressing the left arrow button, but this never occurs. I tried register the cancel listener in the main activity OnCreate(), or in onViewCreated() ; also in the fragment using the search box. The code :
final SearchManager searchManager = (SearchManager)getSystemService(SEARCH_SERVICE);
searchManager.setOnCancelListener(
new SearchManager.OnCancelListener() {
@Override
public void onCancel() {
Log.e("cancel","--------------");
}
}
);
The Log.e line is never called. Thanks