如何允许在标准搜索对话框中提交空白搜索

时间:2011-09-21 10:52:14

标签: android search

我正在使用标准的搜索对话框(如here所述),一切正常,工作正常,但我现在意识到我无法搜索空字符串。

我假设某个地方必须有一个标志允许这样,但似乎找不到这里这个标志。有人可以指点我吗?

1 个答案:

答案 0 :(得分:2)

来自Android源代码中的SearchDialog.java:

// If there is text in the query box, handle enter, and action keys
// The search key is handled by the dialog's onKeyDown().
if (!mSearchAutoComplete.isEmpty()) {
    ...

因此,看起来无法设置标记以进行空白搜索。