Access Specific folder of gallery in Android
I want to open specific folder of gallery. I know the code to open gallery and choose any image from that. But i want to just open folder in a default gallery. There is another way to manually access that images and show it by vreating gallery in activity. But i want to open in default. i tried this one. But obviously not working. Intent intent = new Intent(); intent.setType("image/myFolder/*"); intent.setAction(Intent.ACTION_VIEW); startActivity(Intent.createChooser(intent, "Select Picture")); Anyone can help? Thanks in advance I think it may help somebody... As i have found solution to my