gpt4 book ai didi

java - ReadExternalStorage 权限被拒绝,即使在 list 中声明它之后也是如此

转载 作者:行者123 更新时间:2023-12-01 11:48:04 24 4
gpt4 key购买 nike

我知道这是一个非常基本的问题,但我被困住了。我已声明我的应用程序使用读取外部存储权限,但当我尝试执行需要该权限的操作时,我的应用程序崩溃了。这是 list :

<?xml version="1.0" encoding="utf-8"?>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<uses-feature android:name="android.hardware.camera"
android:required="false" />

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

最佳答案

将声明移至 list 的子项,而不是应用程序:

<?xml version="1.0" encoding="utf-8"?>
<manifest ... >
<uses-feature android:name="android.hardware.camera"
android:required="false" />

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

关于java - ReadExternalStorage 权限被拒绝,即使在 list 中声明它之后也是如此,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29000658/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com