Exemplo n.º 1
0
 @Override
 public boolean onQueryTextSubmit(String text) {
   if (s_adapter != null) s_adapter.filter(text);
   return false;
 }
Exemplo n.º 2
0
 /**
  * *************************************************Bloque
  * filtro***********************************
  */
 @Override
 public boolean onQueryTextChange(String newText) {
   if (s_adapter != null) s_adapter.filter(newText);
   return false;
 }