Intent intent= new Intent();        
    intent.setAction("android.intent.action.VIEW");    
    Uri content_url = Uri.parse("http://www.cnblogs.com");   
    intent.setData(content_url);  
    startActivity(intent);

  如果手机上安装多个浏览器 会弹出选择框选择 选择浏览器

posted on 2016-08-25 17:59  Jinger1992223  阅读(15465)  评论(0编辑  收藏  举报