최대 1 분 소요

Uri targetUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;

String targetDir = Environment.getExternalStorageDirectory().toString() + “/DCIM/Camera”   // 특정 경로!!

targetUri = targetUri.buildUpon().appendQueryParameter(“bucketId”, String.valueOf(targetDir.toLowerCase().hashCode())).build();

Intent intent = new Intent(Intent.ACTION_VIEW, targetUri);

startActivity(intent);

ㅋ.. DCIM/Camera 빼고 다른곳을 호출하면. 안된다는 제보가 있따 ㅡ.,ㅡ

움.. 위와같이 했을때.. 제대로 안되는디.. 다시 도전… 해 봐야 할듯…

이것도 미디어 스켄과 연관 관계가 있을듯…

이미지 로드 속도 관련 아래 참조

http://lusyd.tistory.com/160