最简单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);

  

原文地址:https://www.cnblogs.com/zmaibbs7/p/4844934.html