我正在尝试使用 Android 的搜索管理器。
事实上,我有一个我正在打电话的活动
onSearchRequested()
然后,我在同一个活动中使用这个函数来获取搜索字符串:
// Get the intent, verify the action and get the query
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
}
问题是下一个:当我点击搜索按钮时,我正在打开一个新活动,我想保持不变并进行一些搜索。因此,我的目标是避免在单击搜索按钮时打开新活动。
谢谢你。