Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个 android 应用程序,我想将我的用户重定向到WebView特定键的 Google 图片搜索结果(并且可能是一些额外的搜索选项,如屏幕大小)。
WebView
我在网上搜索了但我没有找到任何解决方案,请帮助。
*另外,我不想使用Bing API
Bing API
我不知道bing api,但如果我会做类似于你描述的事情,那么我会使用这种方法:
Uri uri = Uri.parse("https://www.google.com/search?tbm=isch&q=hello+world"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);
容易得多
您可以将此视为您问题的替代解决方案