gpt4 book ai didi

android - ACTION_GET_CONTENT 到 Google 图片

转载 作者:太空狗 更新时间:2023-10-29 15:14:00 25 4
gpt4 key购买 nike

作为docs说:“ACTION_GET_CONTENT 可以让用户浏览网络并下载所需的数据”。这就是我需要的,来自 Google Images。虽然,如果我使用此 Intent 的类型,应用程序会崩溃(我想它只需要 ACTION_VIEW 打开浏览器):

Intent intent = new Intent();
intent.setData(Uri.parse(url));
intent.putExtra("return-data", true);
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent, PICK_IMAGE);

它需要(编辑以阐明我需要什么):

  • 建立与网络浏览器的连接
  • Google 图片的 URL
  • 在用户选择一个图像后检索图像的 URL(它需要关闭浏览器,ACTION_VIEW 一直持续到用户决定关闭它并且不检索任何信息)。

到目前为止,我的 URL 是这个,但它需要其他东西,因为它将进行默认搜索,而不是图像搜索:

String url = "http://images.google.com/search?q=" + imagename;

感谢任何帮助。

最佳答案

尝试使用以下网址。它在我的应用程序中对我来说很好用:

"http://images.google.com/search?num=10&hl=en&site=&tbm=isch&source=hp&biw=980&bih=710&q=" + YourQueryString

关于android - ACTION_GET_CONTENT 到 Google 图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14234632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com