【Android实测】调起系统浏览器打开指定页面代码

来源:互联网 发布:bear it in mind 编辑:程序博客网 时间:2024/05/16 11:12
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("www.baidu.com"));intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");startActivity(intent);

0 0