// 선택한 이미지 경로 imgView로 뿌려줌
Uri url = data.getData();
ImageView imgView = (ImageView)findViewById(R.id.imgView);
try {
Bitmap bm = Images.Media.getBitmap(getContentResolver(), url);
imgView.setImageBitmap(bm);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}