首页 > 解决方案 > WebView Android 不加载 URL

问题描述

我正在尝试加载此网址“ https://install.appcenter.ms/orgs/osp/apps/gettze/distribution_groups/public ”但是无法使用 webview,代码如下:

mWebView.settings.javaScriptEnabled = true
mWebView.settings.loadsImagesAutomatically = true
mWebView.webViewClient = WebViewClient()
mWebView.loadUrl("https://install.appcenter.ms/orgs/osp/apps/gettze/distribution_groups/public")

在这张图片中你能看到错误消息,出现“糟糕,你似乎是一个不受支持的浏览器,App Center 在 Android 设备上使用 Chrome 时效果最好”,我不明白,因为 WebView 使用 chrome 引擎

标签: androidwebview

解决方案


在清单中添加互联网权限

WebView myWebView = (WebView) findViewById(R.id.webview); myWebView.loadUrl("https://install.appcenter.ms/orgs/osp/apps/gettze/distribution_groups/public");

推荐阅读