ACTION_GET_CONTENT不允许移动或删除文件

时间:2018-02-17 07:47:31

标签: android android-intent android-file

我尝试使用Intent ACTION_GET_CONTENT打开一个应用程序,例如(文件管理器,文件浏览器等...)。但是,一旦我在文件管理器中,我只能打开该文件。使用此方法打开文件管理器应用程序时,不会显示“复制到...”和“移动到...”功能。 ACTION_GET_CONTENT仅用于打开文件吗?

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath());
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));

以下是仅显示打开选项的图片:

enter image description here

0 个答案:

没有答案