작성
·
419
답변 3
0
0
0
흠.. userframent에 있는 이 코드를 사용해보셨나요?
여기보시면 document 에다가 내가 원하는 사람의 uid를 넣으면 가저올 수 있습니다.
fun getProfileImage(){
firestore?.collection("profileImages")?.document(uid!!)?.addSnapshotListener { documentSnapshot, firebaseFirestoreException ->
if(documentSnapshot == null) return@addSnapshotListener
if(documentSnapshot.data != null){
var url = documentSnapshot?.data!!["image"]
Glide.with(activity!!).load(url).apply(RequestOptions().circleCrop()).into(fragmentView?.account_iv_profile!!)
}
}
}