我有一个自定义搜索建议提供程序。现在,这本身并没有真正提供建议,而是提供搜索快捷方式。这是我编写的自定义提供程序:
public class QuickSearchProvider extends SearchRecentSuggestionsProvider {
public final static String AUTHORITY = "com.example.testapp.providers.QuickSearchProvider";
public final static int MODE = DATABASE_MODE_QUERIES | DATABASE_MODE_2LINES;
public QuickSearchProvider() {
setupSuggestions(AUTHORITY, MODE);
}
public Cursor query(Uri uri, String[] projection, String sel,
String[] selArgs, String sortOrder) {
MatrixCursor cursor = new MatrixCursor(new String[] {
BaseColumns._ID,
SearchManager.SUGGEST_COLUMN_TEXT_1,
SearchManager.SUGGEST_COLUMN_TEXT_2,
SearchManager.SUGGEST_COLUMN_ICON_1,
SearchManager.SUGGEST_COLUMN_INTENT_ACTION});
cursor.addRow(new Object[] { 0, "Plants", "Search Plants", android.R.drawable.ic_menu_search, Search.SEARCH_PLANTS_ACTION});
cursor.addRow(new Object[] { 1, "Birds", "Search Birds", android.R.drawable.ic_menu_search, Search.SEARCH_BIRDS_ACTION });
return new MergeCursor(new Cursor[] { cursor });
}
}
在包含搜索字段的活动中,我在onNewIntent
方法中编写了一个处理程序。这是一个例子:
protected void onNewIntent(Intent intent) {
if (Search.SEARCH_PLANTS_ACTION.equals(intent.getAction())) {
...
} else if (Search.SEARCH_BIRDS_ACTION.equals(intent.getAction())) {
...
}
}
如您所见,我可以轻松检查选择了哪个搜索快捷方式,但我似乎无法弄清楚如何获取原始查询字符串。有什么帮助吗?
(附带说明:如果您发现我对自定义搜索建议提供程序的实现有误或可以改进,请告诉我。)
谢谢。