Android Java 等效的 UIDocumentInteractionController

UIDocumentInteractionController equivalent for Android Java

我希望我的 android 应用程序显示一个对话框,允许用户在另一个应用程序中打开文件或保存文件,就像显示的 UIDocumentInteractionController for iOS特定文档的“打开方式...”对话框。 Android SDK 中不存在这个吗?

经过反复试验,我设法找到了一个合理的解决方案,但不等同于 iOS UIDocumentInteractionController,它使用最少的自定义 activity 代码,仅使用ACTION_VIEW 意图。:

private void showDialogForFile(File file, String extension) {
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setType(MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension));
    Uri uri = FileProvider.getUriForFile(getBaseContext(), 
      getApplicationContext().getPackageName() + ".provider", file);
    intent.setData(uri);
    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    startActivity(intent);
}

我还需要将以下内容添加到我的 Android 清单中:

<provider 
  android:authorities="${applicationId}.fileprovider"
  android:exported="false" 
  android:grantUriPermissions="true" 
  android:name="android.support.v4.content.FileProvider">
    <meta-data 
      android:name="android.support.FILE_PROVIDER_PATHS" 
      android:resource="@xml/file_paths" />
</provider>

然后添加到资源文件中res/xml/file_paths.xml

<?xml version='1.0' encoding='utf-8'?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="external_files" path="." />
</paths>