美文网首页
解决Android7.0以上读取不到本地文件的问题

解决Android7.0以上读取不到本地文件的问题

作者: 蒙双眼看世界 | 来源:发表于2020-09-29 15:29 被阅读0次

    已经开启了授权读取本地文件权限,但是依然无法读取本地有些文件,这个原因很简单了。
    <application
    android:allowBackup="true"
    android:icon="@mipmap/logo128111"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/logo128111"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    android:usesCleartextTraffic="true"
    android:launchMode="singleTask"
    android:screenOrientation="portrait"
    android:requestLegacyExternalStorage="true"
    >
    最关键的是要添加上 android:requestLegacyExternalStorage="true"这句就可以了。

    相关文章

      网友评论

          本文标题:解决Android7.0以上读取不到本地文件的问题

          本文链接:https://www.haomeiwen.com/subject/vaeeuktx.html