Intent intent = new Intent(Intent.ACTION_GET_CONTENT,null);
intent.setType("image/*");
intent.putExtra("crop", "true");
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
intent.putExtra("noFaceDetection", true);
intent.putExtra("return-data", true);
startActivityForResult(intent, REQUEST_GET_PHOTO_LIST);

위와 같이 intent를 날리면 gallrey 모듈로 연결이 되어 sdcard 내에 있는 모든 이미지 목록을 보여주고
하나의 이미지를 클릭할경우 그이미지를 crop 할수 있는 activity로 연결이 되어서
crop한 이미지를 sdcard에 저장하는 것이 아니라  return-data로 받아올수가 있는데요

모든 이미지 목록이 아닌 특정 폴더에 있는 이미지 목록만 보여준후 이미지를 클릭할 경우 바로 crop할수 있는 activity가 나오게 하는
방법이 없을까요?

Item item = m_adapter.mItems.get(position);
           
Uri uri = Images.Media.INTERNAL_CONTENT_URI;
uri = uri.buildUpon().appendQueryParameter("bucketId", item.bucketName).build();
Intent intent = new Intent(Intent.ACTION_GET_CONTENT,uri);

이렇게 해봤더니 ActivityNOTFoundExeption 이 납니다. intent 생성하는 부분에 ACTION_GET_CONTENT를 ACTION_VIEW로 할경우
특정폴더의 이미지 목록을 보여주기만 하는것은 가능한데 ACTION_GET_CONTENT가 아니기 때문에 return-data로 이미지를 받아올수가 없습니다. ACTION_GET_CONTENT로 intent를 날려서 특정폴더의 이미지만 보여지게 할수 있는 방법을 아시는분 계신가요~?
도움 부탁드립니다!

P.s : 참고로 위의 Item.bucketname에는 query 작업을 통하여 특정폴더의 bucket_id가 들어있습니다.