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

前端之家收集整理的这篇文章主要介绍了android – 如何使用默认浏览器在谷歌上搜索字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想实现一个搜索功能,打开默认浏览器并搜索传递的字符串
public void searchOnGoogle(String keywords){
---
}

有没有办法使用意图过滤器或我必须自己实现一切?

解决方法

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);
原文链接:https://www.f2er.com/android/318179.html

猜你在找的Android相关文章