如何打开一个列出可以打开给定文件夹的所有应用程序的对话框?
我尝试了以下代码
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setData(Uri.fromFile(Environment.getExternalStorageDirectory()));
startActivity(Intent.createChooser(intent, "Open Folder"));
它说“没有应用程序可以执行此操作。”
我的设备有默认的文件资源管理器和AndroidZip应用程序(这些应用程序可以打开文件夹)。
答案 0 :(得分:4)
它说“没有应用程序可以执行此操作。”
这并不奇怪。您不是要求打开“文件夹”,因为Intent
系统中没有“文件夹”这样的东西。您正在尝试找出哪些应用程序可以打开没有文件扩展名且没有MIME类型的路径。您的设备上没有安装<intent-filter>
的活动,该活动在没有文件扩展名且没有MIME类型的路径上支持ACTION_GET_CONTENT
。
您可以尝试ACTION_VIEW
。但是,请记住,我估计90%以上的Android设备都不会以这种方式处理“文件夹”。
答案 1 :(得分:2)
在这里试试。适合我。
public void openFolder()
{
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
+ "/yourFolder/");
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));
}
另见here
答案 2 :(得分:1)
因为目录中的文件似乎没有标准的mime类型,所以我编写了我的文件资源管理器来过滤没有mime类型的意图。只需将数据设置到文件夹的Uri。
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/MyFolder");
intent.setData(uri);
startActivity(intent);
此意图将在应用程序之后启动:
http://play.google.com/store/apps/details?id=com.organicsystemsllc.thumbdrive
我发现这也可以打开文件或文件夹,具体取决于扩展名。文件夹的uri的文件扩展名和mime类型在下面的代码片段中最终为null。这仍然可以匹配过滤方案“文件”但没有特定的mime类型的活动,即Thumb Drive。请注意,当uri是目录时,此方法将找不到筛选所有文件mime类型的活动。
//Get file extension and mime type
Uri selectedUri = Uri.fromFile(file.getAbsoluteFile());
String fileExtension = MimeTypeMap.getFileExtensionFromUrl(selectedUri.toString());
String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension);
//Start Activity to view the selected file
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(selectedUri, mimeType);
startActivity(Intent.createChooser(intent, "Open File..."));
答案 3 :(得分:1)
有效:
Uri selectedUri = Uri.parse(Environment.getExternalStorageDirectory() + "/myFolder/");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(selectedUri, "resource/folder");
startActivity(intent);
有一个很好的编码:)
答案 4 :(得分:0)
不幸的是,就像@CommonsWare所说,并不存在&#34;文件资源管理器&#34;的标准定义。有货Android系统(除非您安装第三方&#34;文件资源管理器&#34;)..
这就是为什么 "resource/folder"
mime-type默认不起作用的原因..
答案 5 :(得分:0)
我进行了很多搜索,发现内容类型为 _stack.push_back(_tetromino);
。
而且,这包括针对目标API 24及更高版本的其他解决方案。它显示了两个可以打开它的应用程序:OpenIntent File Manager和内置的File Manager。
这是研究。还不是一个完整的答案。如果您发现内置文件管理器的参数应该是什么,请在此处告诉我们。
vnd.android.document/directory
,即指向DCIM文件夹。
File saveLocations
似乎,Android 24+中存在这种可能性。
有一个用于打开目录的意图过滤器:
// open a location with the file exporer
// see https://stackoverflow.com/a/26651827/1320237
// see https://stackoverflow.com/a/38858040
// see https://stackoverflow.com/a/8727354
Uri saveLocationUri = FileProvider.getUriForFile(this, this.getPackageName() + ".provider", saveLocation);
final Intent openSaveLocationIntent = new Intent(Intent.ACTION_VIEW);
openSaveLocationIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
openSaveLocationIntent.setDataAndType(saveLocationUri, "vnd.android.document/directory");
// see http://www.openintents.org/action/android-intent-action-view/file-directory
openSaveLocationIntent.putExtra("org.openintents.extra.ABSOLUTE_PATH", saveLocation.toString());
if (openSaveLocationIntent.resolveActivityInfo(getPackageManager(), 0) != null) {
startActivity(openSaveLocationIntent);
} else {
// if you reach this place, it means there is no any file
// explorer app installed on your device
}
我不确定如何正确设置参数。
<activity
android:name=".files.FilesActivity"
android:documentLaunchMode="intoExisting"
android:theme="@style/DocumentsTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.document/root" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.document/directory" />
</intent-filter>
</activity>
我尝试添加一些其他信息,但它仍会在根文件夹中打开活动。
// Sets args that will be retrieve on onCreate()
final Bundle args = new Bundle();
args.putString(EXTRA_FILE, file.getAbsolutePath());
args.putString(EXTRA_VOLUME_LABEL, volumeLabel);
args.putString(EXTRA_VOLUME_UUID, isPrimary ? null : storageVolume.getUuid());
args.putString(EXTRA_APP_LABEL, appLabel);
args.putBoolean(EXTRA_IS_ROOT, isRoot);
args.putBoolean(EXTRA_IS_PRIMARY, isPrimary);