Android FileProvider 处理不同文件类型的关键在于配置文件类型(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 可以根据不同的文件类型生成正确的 MIME 类型,并将其提供给其他应用。