本文整理汇总了Java中android.content.SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES属性的典型用法代码示例。如果您正苦于以下问题:Java SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES属性的具体用法?Java SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES怎么用?Java SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类android.content.SearchRecentSuggestionsProvider
的用法示例。
在下文中一共展示了SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendSearchIntent
private void sendSearchIntent () {
try {
Intent sendIntent = new Intent(this, Class.forName(searchableActivity));
sendIntent.setAction(Intent.ACTION_SEARCH);
sendIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
sendIntent.putExtra(SearchManager.QUERY, query);
// If it is set one-line mode, directly saves the suggestion in the provider
if (!CustomSearchableInfo.getIsTwoLineExhibition()) {
SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, providerAuthority, SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES);
suggestions.saveRecentQuery(query, null);
}
startActivity(sendIntent);
finish();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
示例2: requestSearch
/**
* Tests if search query is valid and internet connection is available.
* Then starts a new search.
*
* @param query Query to search for
*/
protected void requestSearch(String query) {
mQuery = query;
if (query.length() < mMinLength) {
final String text = String.format(getString(R.string.min_search_len), mMinLength);
Utils.showToast(this, text);
return;
}
/*if (!Utils.isConnected(this)) {
showNoInternetLayout();
return;
}*/
// Add query to recents
SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, mAuthority, SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES);
suggestions.saveRecentQuery(query, null);
// Tell activity to start searching
onStartSearch(query);
}