美文网首页
Android调用浏览器的两种方式

Android调用浏览器的两种方式

作者: 游学者崔斯特 | 来源:发表于2015-10-26 15:51 被阅读63次

    1.调用默认浏览器并直接打开

    Uri uri = Uri.parse(url);

    Intent intent = new Intent(Intent.ACTION_VIEW, uri);

    startActivity(intent);

    2.弹出一个选择浏览器的框,选择浏览器再进入:

    Intent intent= new Intent();

    intent.setAction(Intent.ACTION_VIEW);

    Uri content_url = Uri.parse(url);

    intent.setData(content_url);

    startActivity(Intent.createChooser(intent, “请选择一款浏览器”);

    相关文章

      网友评论

          本文标题:Android调用浏览器的两种方式

          本文链接:https://www.haomeiwen.com/subject/lxdxhttx.html