-1
我如何打開畫廊中的特定文件夾。 例如:文件夾的名稱是我的文件夾。 當用戶點擊按鈕時,直接在默認庫中打開我的文件夾。 我該怎麼做?無法打開畫廊內的特定文件夾
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);
檢查此問題http://stackoverflow.com/questions/10749351/how-to-open-one-particular-folder-from-gallery-in-android –
它工作謝謝 – Bug