问题描述
- 在Google中用默认浏览器查询字符串
- 请问,想实现搜索功能,可以打开默认浏览器,搜索传递字符值。
public void searchOnGoogle(String keywords){---}
有没有用指定过滤器的方法?
解决方案
String query = URLEncoder.encode(keywordsutf-8"");String url = ""http://www.google.com/search?q="" + query;Intent intent = new Intent(Intent.ACTION_VIEW);intent.setData(Uri.parse(url));startActivity(intent);
时间: 2024-09-08 22:44:09