intent에서 이미지정보를 넘겨줌.
intent.putExtra("IMAGE1", arr.get(a).getImageUrl1());
=> 작업을 원하는 Activity로 이동.
String image1 = intent.getExtras().getString("IMAGE1");
로 image1에 정보를 받기.
StorageReference ref = FirebaseStorage.getInstance().getReference("images/"+image1);
로 ref에 저장소값 저장.
Glide.with(this /* context */)
.load(ref)
.into(imageShow1);imageShow1이라는 이미지뷰에 Glide로 넣어주면 사진정보가 넘어가서 imageview에 뜨게됨.
'안드로이드 스튜디오' 카테고리의 다른 글
안드로이드 스튜디오> 앨범에서 여러장 불러오기 (1) | 2019.02.14 |
---|---|
파이어베이스에서 실시간 데이타 삭제하기 (0) | 2019.01.15 |
Adapter에서 dialog 사용법 (0) | 2019.01.15 |