Home | History | Annotate | Download | only in searchabledict

Lines Matching refs:query

76             // handles a search query
77 String query = intent.getStringExtra(SearchManager.QUERY);
78 showResults(query);
83 * Searches the dictionary and displays results for the given query.
84 * @param query The search query
86 private void showResults(String query) {
89 new String[] {query}, null);
93 mTextView.setText(getString(R.string.no_results, new Object[] {query}));
98 count, new Object[] {count, query});