1

この方法を使用して、アプリ固有のフォルダーから MediaStore Images コレクションにファイルをコピーしようとしています:

/**
 * Copies file from path of scheme `file://` to Uri of scheme `content://`
 *
 * @param fromPath Example: /storage/emulated/0/com.my.package/FILE/7225832726757260/wang-shaohong-Kh-NfgSYqN0-unsplash.jpg
 * @param toContentUri should be of `content://` scheme. Example: content://media/external_primary/downloads/1515
 */
@Throws(IOException::class)
fun copyFilePathToContentUri(fromPath: String, toContentUri: Uri) {
    AppContext.getAppContext().contentResolver.openOutputStream(toContentUri)?.use { outputStream ->
        FileInputStream(fromPath).use { inputStream ->
            val buffer = ByteArray(1024)
            var length: Int
            length = inputStream.read(buffer)

            while (inputStream.read(buffer).also { length = it } > 0) {
                outputStream.write(buffer, 0, length)
            }
        }
    }
}

コンテンツ uri は、次のメソッドで作成されます。

fun createImagesFile(imagePath: String): Uri? {
    val fileExtension = imagePath.substringAfterLast('.', "")
    if (fileExtension.isBlank()) return null
    val map = MimeTypeMap.getSingleton()
    val mimeType = map.getMimeTypeFromExtension(fileExtension) ?: return null
    if (!mimeType.startsWith("image/")) {
        loge("FileUtils createImagesFile Error. Given file is not of image type")
        return null
    }

    val volumeName = if (hasAndroid10()) MediaStore.VOLUME_EXTERNAL_PRIMARY else MediaStore.VOLUME_EXTERNAL

    val values = ContentValues().apply {
        put(MediaStore.Images.Media.DISPLAY_NAME, "Photo")
        put(MediaStore.Images.Media.MIME_TYPE, mimeType)
        if (hasAndroid10()) {
            put(MediaStore.Images.Media.IS_PENDING, 1)
        }
    }
    val collection = MediaStore.Images.Media.getContentUri(volumeName)

    return Application.getAppContext().contentResolver.insert(collection, values)

}

結果の画像は開くことができません。私は何を間違っていますか?

4

1 に答える 1