gpt4 book ai didi

android - 如何使用默认浏览器在谷歌上搜索字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:51:09 25 4
gpt4 key购买 nike

我想实现一个打开默认浏览器并搜索传递的字符串的搜索功能

public void searchOnGoogle(String keywords){
---
}

有没有办法使用 Intent 过滤器,或者我必须自己实现所有内容?

最佳答案

String query = URLEncoder.encode(keywords, "utf-8");
String url = "http://www.google.com/search?q=" + query;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);

关于android - 如何使用默认浏览器在谷歌上搜索字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13853375/

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