答案 0 :(得分:0)
要在webview中打开网址,只需将WebView添加到xml即可。然后这样做。
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://www.google.com");
上面的图片虽然是chromecustomtab。为此,您需要将其添加到您的应用级build.gradle
compile 'com.android.support:customtabs:23.3.0'
然后打开这样的网址:
String url = ¨https://paul.kinlan.me/¨;
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));