7

嗨,我想将谷歌搜索 api 添加到我的应用程序中。搜索结果应该显示在列表视图中......有人可以给我发一些例子或告诉我怎么做吗?

4

2 回答 2

6

这里是:

import android.app.SearchManager;

// ...

Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);  
intent.putExtra(SearchManager.QUERY, "Search query");    
startActivity(intent);

基于语音的搜索:

import android.speech.RecognizerIntent;

// ...

Intent sp = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
sp.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
sp.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speak please");
startActivity(sp);
于 2013-10-21T11:23:22.487 回答
2

这是在您的 android 应用程序中实现 google 搜索的一个很好的示例实现 google 搜索 。希望它有所帮助。

于 2013-10-21T11:19:37.773 回答