ImageButton gallery = (ImageButton)findViewById(R.id.gallery_button_id);//앨범 이동 버튼
     gallery.setOnClickListener(new ImageButton.OnClickListener() {

public void onClick(View v) {
Uri uri = Uri.parse("content://media/internal/images/media");
           Intent intent = new Intent(Intent.ACTION_VIEW, uri);
           startActivity(intent);
}
     });

이런 식으로 버튼에 인텐트 물려서 시도했는데 갤러리가 먹통입니다.

방법 아시는 분 있으면 말해주시면 감사하겠습니다.