Android FileProvider 處理不同文件類型的關(guān)鍵在于配置文件類型(MIME類型)和正確使用 FileProvider 的 XML 配置。以下是處理不同文件類型的步驟:
<manifest ...>
<application ...>
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
...
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." />
</paths>
<?xml version="1.0" encoding="utf-8"?>
<mime-types xmlns:android="http://schemas.android.com/apk/res/android">
<type android:name="image/jpeg" />
<type android:name="image/png" />
<type android:name="video/mp4" />
<!-- 添加更多文件類型 -->
</mime-types>
getUriForFile()
方法獲取文件的 Uri。例如:File file = new File(Environment.getExternalStorageDirectory(), "example.jpg");
Uri fileUri;
if (file.exists()) {
fileUri = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".fileprovider", file);
} else {
// 處理文件不存在的情況
}
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
startActivity(Intent.createChooser(intent, "Share image using"));
通過以上步驟,Android FileProvider 可以根據(jù)不同的文件類型生成正確的 MIME 類型,并將其提供給其他應(yīng)用。