在Android Studio中单击“File”菜单,然后选择“Open”选项。
找到要打开的文件夹,并选择它。
点击“OK”以开始导入文件夹。
代码示例:
File folder = new File("/sdcard/my_folder"); Intent intent = new Intent(Intent.ACTION_GET_CONTENT); Uri uri = Uri.parse(folder.getAbsolutePath()); intent.setDataAndType(uri, "/"); startActivity(Intent.createChooser(intent, "Open folder"));
以上代码可以修改为想要打开的任何文件夹。这段代码使用了Intent.ACTION_GET_CONTENT和Uri.parse()方法获取并打开文件夹。最后,使用startActivity()方法启动选择器。