应用之间的共享文件(FileProvider)

406 阅读1分钟
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    // path属性中要加“/”
    <external-path name="my_images" path="/" />
</paths>

<provider
    // 要是用androidx而不是android
            android:name="androidx.core.content.FileProvider"
            android:authorities="com.example.cameraalbumtest.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>