이미지 갤러리를 띄울때 보통 아래와 같이 코딩을 하잖아요?


그런데 갤럭시 S 에있는 이메일 어플을 보니까....... 첨부 버튼을 클릭하면 Dialog 가 나오고 파일을 누르면 파일 탐색기 어플이 실행 되더라구요...... 파일 탐색기 어플을 실행할려면...... 어떻게 처리를 해줘야 되는건가요??


정말 궁금합니다. ㅠㅠ


Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent,RESULT_IMAGEGALLERY);