首页 > 代码库 > Android 如何调用系统默认浏览器访问
Android 如何调用系统默认浏览器访问
// 调用系统默认浏览器 // 参考: // http://www.cnblogs.com/zhwl/archive/2011/11/15/2249848.html // https://segmentfault.com/a/1190000003912694 case R.id.tv_about_weibo: // 关于微博 // 直接打开// Intent intent= new Intent();// intent.setAction("android.intent.action.VIEW");// Uri weibo_url = Uri.parse(tvAboutWeibo.getText().toString());// intent.setData(weibo_url);// startActivity(intent); // 弹出一个选择浏览器的框,选择浏览器再进入 Intent intent= new Intent(); intent.setAction(Intent.ACTION_VIEW); Uri content_url = Uri.parse(tvAboutWeibo.getText().toString()); intent.setData(content_url); startActivity(Intent.createChooser(intent,getString(R.string.about_cherry_choice_browser))); break;
Android 如何调用系统默认浏览器访问
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。