how i can open a specific folder in gallery. ex :name of folder is my folder. when user click Button it directly open my folder inside default gallery. how can i do this?
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);