【发布时间】:2014-12-20 09:45:10
【问题描述】:
我有一个 android 应用程序,应该使用图像在谷歌搜索..用户应该上传照片并使用它搜索..
我有那个代码可以选择要搜索的照片..
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), GALLERY_CODE);
我在谷歌上搜索,我发现只有那个..
但是使用关键字搜索图像..我不想要那个..
我也尝试使用图片在 Bing 中进行搜索,但我不能。
有什么想法吗?
【问题讨论】:
标签: java android google-custom-search google-image-search