打开文件管理器选择文件

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("/");
intent.addCategory(Intent.CATEGORY_OPENABLE);
Intent chooser = Intent.createChooser(intent, "请选择要代开的文件");
startActivityForResult(chooser, 1000);

你可能感兴趣的:(打开文件管理器选择文件)