4

我想知道如何使用 Google 图片搜索查询“按文本搜索图片”来启动浏览器。例如,用户可以选择某个单词或短语并单击一个按钮,该活动将使用 Google 图片搜索查询启动浏览器。

提前致谢。

4

2 回答 2

9

像这样创建 URL:

String URLString = "https://www.google.com/search?hl=en&site=imghp&tbm=isch&source=hp&q="+TestString;

像这样启动它:

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(URLString));
startActivity(i);

确保您的 TestString 是 URL 安全的

于 2013-01-23T00:09:18.313 回答
0

只需要添加tbm=isch

例子:

网址:https://www.google.com/search?tbm=isch&q=findSomeImage

于 2021-05-18T05:12:13.107 回答