2012-10-19 72 views
-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); 
+0

檢查此問題http://stackoverflow.com/questions/10749351/how-to-open-one-particular-folder-from-gallery-in-android –

+0

它工作謝謝 – Bug

回答

0

這個答案已經給了兩次了。下次請首先使用Google。 abbas.aniefa提供的鏈接是我在搜索「ACTION_VIEW特定圖庫」時在Google上的第二次搜索。 答案也給出here