Android指定调用系统自带浏览器打开链接

来源:互联网 发布:linux nc 监听端口 编辑:程序博客网 时间:2024/05/17 06:23
 Intent intent = new Intent();
 intent.setAction(Intent.ACTION_VIEW);
 intent.setData(Uri.parse("http:www.google.com"));                     intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");
 startActivity(intent);

也可以调用其它浏览器:

uc浏览器:"com.uc.browser", "com.uc.browser.ActivityUpdate“

opera:"com.opera.mini.android", "com.opera.mini.android.Browser"

原创粉丝点击