1

我是第一次开发一个android应用程序。我可以使用以下代码进行 www.google.com 搜索:

    public void onSearchClick(View v) {
    try {
        Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
        String term = editText.getText().toString();
        intent.putExtra(SearchManager.QUERY, term);
        startActivity(intent);
    } catch (Exception ex) {

    }

}

但是是否也可以在 images.google.com 上进行类似的搜索(使用在 editText-widget 中填写的单词)?提前致谢。

4

2 回答 2

0

我找不到优雅的方式。intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://images.google.com/search?num=10&hl=en&site=&tbm=isch&source=hp‌​&biw=1366&bih=667&q=cars&oq=cars&gs_l=img.3..0l10.748.1058.0.1306.4.4.0.0.0.0.165‌​.209.2j1.3.0...0.0...1ac.1.8RNsNEqlcZc"));但是你可以使用这个:)q='Your_search_text'

于 2012-10-14T04:35:05.447 回答
0

聚会有点晚了。

我试图做同样的事情,偶然发现了这个Android:谷歌图片搜索结果 ,发现下面的查询应该更“优雅”——但当然不能保证谷歌不会改变它——:

以“猎豹”为例进行查询,

https://www.google.com/search?tbm=isch&q=cheetah 

应该做的伎俩。

This should have come close to Shashank Kadne's suggestion in the comment above.

于 2013-11-24T15:51:45.393 回答