APP内跳转链接用INTENT,但是用系统浏览器,在内部还是要webview

public void clickKefu() {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));
getActivity().startActivity(intent);
}

原文地址:https://www.cnblogs.com/gzpu/p/13300142.html