3

我们的 Android 设备包含内部存储器和外部存储器。我们的应用程序包含一个打开按钮。当我们单击此打开按钮以查看/打开默认文件管理器外部存储器时。

示例代码:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivity(Intent.createChooser(intent, "View Default File Manager"));

此代码可以查看/打开默认文件管理器内部存储器。

如何(单击打开按钮)查看/打开默认文件管理器外部存储器?

可能吗?

4

2 回答 2

0

试试这个代码

    File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/file");
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.fromFile(file),”application/file”);
    startActivity(intent);
于 2012-08-02T10:46:18.703 回答
-1

在类定义中:

public static String SDCARD_DIRECTORY;
public static String REPORTS_DIRECTORY;

在 onCreate 中:

File sdCard = Environment.getExternalStorageDirectory();
SDCARD_DIRECTORY = sdCard.getAbsolutePath();
REPORTS_DIRECTORY = SDCARD_DIRECTORY + "/MyReports";
// Create if necessary the desired folder
File directory = new File (REPORTS_DIRECTORY);
directory.mkdirs();

现在,这段代码对我有用。

Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
File file = new File(REPORTS_DIRECTORY);
intent.setDataAndType(Uri.fromFile(file),"application/file");
StartActivityForResult(Intent.createChooser(intent,"Open folder"), 0);
于 2013-08-09T06:24:33.200 回答