我想使用内置的Android系统Web视图打开网址,如下图所示

时间:2017-09-24 14:41:56

标签: java android google-chrome webview

Image here

我想在不离开我的应用的情况下打开网页

非常感谢任何答案

1 个答案:

答案 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));