안녕하세요..

다름이 아니라 이미지 이름 때문에 골머리를 쓰고 있네요..

일단 예제를 보고

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*"); 갤러리 뷰를 띄우는 것 까지 완료 했습니다.


그리고 선택한 이미지를 불러와서 보여주는 것 까지 완료를 했는데요.. 정작 중요한건 이미지를 보여주는게 선택된 
이미지 경로랑, 이미지 이름을 받아와야 하는데 도저히 어떻게 해야할지 모르겠네요...

if( requestCode == REQ_GALLERY )
  {
      if( data != null ){
        Uri imgUri = data.getData(); // 여기서 Data 받고
        Bitmap selPhoto;
        try {
          selPhoto = Images.Media.getBitmap( getContentResolver(), imgUri ); 
    ImageView image = (ImageView)findViewById(R.id.imgView);
          image.setImageBitmap(selPhoto);
    }catch 생략
   }
  }