3

プロジェクト compileSdkVersion を 28 から 29 に移行し、マニフェストに android:requestLegacyExternalStorage="true" を追加しましたが、SDK 28 のようにダウンロードやファイルを開くなどのファイル操作が機能しません

グラドルファイル

compileSdkVersion 29

defaultConfig {
    applicationId "in.example.app"
    minSdkVersion 21
    targetSdkVersion 29
    versionCode 90
    versionName "1.8.3"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

マニフェスト ファイル

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="in.example.app">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.SMS_FINANCIAL_TRANSACTIONS" />

<application
    android:name=".MyApp"
    android:allowBackup="true"
    android:hardwareAccelerated="true"
    android:icon="@mipmap/ic_launcher"
    android:largeHeap="true"
    android:networkSecurityConfig="@xml/network_security_config"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:replace="android:theme,android:allowBackup"
    tools:targetApi="n"
    android:requestLegacyExternalStorage="true">

    <activity android:name=".ui.main.MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="in.example.app.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths" />
    </provider>

</application>

ファイルダウンロードコード

fun startDownloading(path: String, url: String): Long {
    return try {
        val downFileName = re.replace(url.substringAfterLast("/"), "")

        val downloadManager = context.getSystemService(DOWNLOAD_SERVICE) as DownloadManager
        val request = DownloadManager.Request(Uri.parse(url))
            request.setTitle(downFileName)
                .setDestinationInExternalPublicDir(path, downFileName)
                .setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
        downloadManager.enqueue(request)
    } catch (e: Exception){
        0
    }
}
  • パスは、内部ストレージ「/myapp/study materials/」内のフォルダの場所である必要があります
  • url は、サーバーからのファイルの場所の URL である必要があります

ファイルを開く

fun openFile(title: String, path: String){
    try {
        val newFile = File(Environment.getExternalStorageDirectory().absolutePath + path, title)

        val uri = if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M)
        {
            FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileprovider", newFile)
        } else{
            Uri.fromFile(newFile)
        }

        val intent = Intent(Intent.ACTION_VIEW, uri)
        intent.setDataAndType(uri, context.contentResolver.getType(uri))
        intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP
        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
        val activities: List<ResolveInfo> = context.packageManager.queryIntentActivities(intent, 0)
        val isIntentSafe: Boolean = activities.isNotEmpty()

        // Start an activity if it's safe
        if (isIntentSafe) {
            context.startActivity(Intent.createChooser(intent, "Open With"))
        } else{
            MDToast.makeText(context, "No Application Found For Opening This File", MDToast.TYPE_INFO).show()
        }
    } catch (e : Exception){
        println("=============== ${e.message}")
    }

}
  • パスは、内部ストレージ「/myapp/study materials/」内のフォルダの場所である必要があります
  • タイトルはファイル名にする必要があります

ファイルの存在チェック

override fun checkFileExistence(title: String, path: String): Boolean {
    var flag = false
    try {
        val direct = File(
            Environment.getExternalStorageDirectory().toString()
                    + path + title)
        flag = direct.exists()
    } catch (e: Exception) {
    }

    return flag
}
  • パスは、内部ストレージ「/myapp/study materials/」内のフォルダの場所である必要があります
  • タイトルはファイル名にする必要があります

SDK 29 への更新中に動作しないコードをすべて追加しました。サーバーからファイルをダウンロードして、内部ストレージのアプリ固有のフォルダーに保存したいのですが、ダウンロードする前に、ファイルが既にダウンロードされているかどうかも確認する必要があります。それ。すでにダウンロードされている場合は、そのファイルを開く必要があります

4

1 に答える 1