我如何在图库中打开特定文件夹。 例如:文件夹的名称是我的文件夹。 当用户点击按钮时,它直接在默认图库中打开我的文件夹。 我怎么能这样做?
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);
答案 0 :(得分:0)
这个答案已经两次给出了。请在下次使用Google。 abbas.aniefa给出的链接是我在搜索“ACTION_VIEW特定图库”时第二次访问谷歌。 答案也是here。