最简单webview跳转

String url = "http://www.qq.com"

Uri uri=Uri.parse("http://www.baidu.com");
Intent intent=new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

  

posted on 2015-09-28 20:43  纸玫瑰  阅读(198)  评论(0编辑  收藏  举报

导航