`
lynen
  • 浏览: 125094 次
  • 性别: Icon_minigender_2
  • 来自: 杭州
社区版块
存档分类
最新评论

浏览器中打开指定的链接

 
阅读更多

浏览器中打开指定的链接

try {
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse(mCurrentUrl));
            this.startActivity(intent);
        } catch (ActivityNotFoundException e) {
            //需要增加此异常处理的原因是:手机上可能没有安装浏览器
        }

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics