出现此问题是因为Android 10系统对手机存储权限做了更改,解决此问题需要在manifest清单文件中添加权限请求:requestLegacyExternalStorage=“true”,如下:
<application
android:name=".MyApplication"
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"
android:requestLegacyExternalStorage="true"
android:usesCleartextTraffic="true"
tools:targetApi="q">