如何使用ImageView调用搜索对话框?

时间:2012-05-22 15:41:49

标签: android

当我按下按钮进入活动或按下ImageView时,我必须调用搜索对话框,而不是像这篇帖子中的硬件按钮:

How can I call search dialog on button click in android?

如果你有代码或教程,请多多谢谢。

1 个答案:

答案 0 :(得分:1)

在“调用搜索对话框”

下的docs for the search dialog
  

...但是,某些设备不包含专用的SEARCH按钮,因此您不应该认为它始终可用。使用搜索对话框时,必须始终在UI中提供另一个搜索按钮,通过调用onSearchRequested()激活搜索对话框...

因此,当您按下图像时,您应该能够将onSearchRequested();放入点击侦听器中,此方法调用应为您启动搜索对话框。