美文网首页Android Utils
Android 打开一个网址

Android 打开一个网址

作者: 几千里也 | 来源:发表于2015-12-20 17:25 被阅读22次

    方法一

    String url = "http://www.baidu.com";
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setData(Uri.parse(url));
    startActivity(intent);
    

    相关文章

      网友评论

        本文标题:Android 打开一个网址

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