Skip to content

Instantly share code, notes, and snippets.

@matdziu
Last active November 17, 2016 11:49
Show Gist options
  • Select an option

  • Save matdziu/8c37c5a8ae67a8da83f2168f8e544cdc to your computer and use it in GitHub Desktop.

Select an option

Save matdziu/8c37c5a8ae67a8da83f2168f8e544cdc to your computer and use it in GitHub Desktop.
@Override
public boolean onQueryTextChange(String newText) {
if (!newText.isEmpty()) {
adapter.setNamesList(namesAPI.searchForName(query));
adapter.notifyDataSetChanged();
apiCallsTextView.setText("API CALLS: " + apiCalls++);
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment