我如何在图库中打开特定文件夹。例如:文件夹名称是我的文件夹。当用户单击按钮时,它会直接在默认图库中打开我的文件夹。我怎样才能做到这一点?
Intent intent=new Intent(Intent.ACTION_VIEW);
Uri uri=Uri.fromFile(new File(Environment.getExternalStorageDirectory().toString()+"/video"));
intent.setType("video/mp4");
startActivityForResult(Intent.createChooser(openGallary, "Select Video"), 0);