无法更改 android 10 的权限,也无法更改 运行 webview
Can't change permissions on android 10 and can't run webview
我正在尝试在我的应用程序上设置访问互联网的权限,但权限管理器不允许我这样做。因此,我无法 运行 浏览网页。下面的代码 运行 在牛轧糖上没问题。怎么回事?
这是我的清单的一部分:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.droid_controls">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".WebViewActivity"
android:screenOrientation="landscape"></activity>
<activity
这是用于网络视图的代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_web_view);
WebView browser = findViewById(R.id.webview);
browser.loadUrl("http://www.google.com");
}
和 html:
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
当我转到应用程序管理器并尝试更改权限并点击“允许”时,没有任何反应。奇怪的是,如果我查看应用程序的所有权限,我会发现它与我的清单相匹配。看截图:
权限与清单相符。
点击任何东西都无济于事,网络视图也不会加载页面。怎么回事?
谢谢。
INTERNET 和 ACCESS_NETWORK_STATE 是普通权限。当您的设备运行 Android 6.0 或更高版本并且您的 targetSdkVersion
为 23 或更高版本时,它们会在安装时自动授予。
另见 permissions documentation and this SO post
没关系,这就是问题所在。
android:usesCleartextTraffic="true"
我正在尝试在我的应用程序上设置访问互联网的权限,但权限管理器不允许我这样做。因此,我无法 运行 浏览网页。下面的代码 运行 在牛轧糖上没问题。怎么回事?
这是我的清单的一部分:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.droid_controls">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".WebViewActivity"
android:screenOrientation="landscape"></activity>
<activity
这是用于网络视图的代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_web_view);
WebView browser = findViewById(R.id.webview);
browser.loadUrl("http://www.google.com");
}
和 html:
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
当我转到应用程序管理器并尝试更改权限并点击“允许”时,没有任何反应。奇怪的是,如果我查看应用程序的所有权限,我会发现它与我的清单相匹配。看截图:
权限与清单相符。
点击任何东西都无济于事,网络视图也不会加载页面。怎么回事?
谢谢。
INTERNET 和 ACCESS_NETWORK_STATE 是普通权限。当您的设备运行 Android 6.0 或更高版本并且您的 targetSdkVersion
为 23 或更高版本时,它们会在安装时自动授予。
另见 permissions documentation and this SO post
没关系,这就是问题所在。
android:usesCleartextTraffic="true"