这是什么错误?权限已经给了
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
其它
(1)
收藏
我要回答
在Android后期版本中,WebView访问网络默认只能访问https网址,如果想要访问http网址,需要配置一下。
在application添加:
android:usesCleartextTraffic="true"
配置文件如下:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.wanmait.wanmaapp"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:usesCleartextTraffic="true" android:theme="@style/Theme.WanmaApp"> <activity android:name=".BrowserActivity" android:label="@string/title_activity_browser" android:theme="@style/Theme.WanmaApp.NoActionBar"></activity> <activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/Theme.WanmaApp.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <uses-permission android:name="android.permission.INTERNET"></uses-permission> </manifest>
在Android后期版本中,WebView访问网络默认只能访问https网址,如果想要访问http网址,需要配置一下。
在application添加:
配置文件如下: