소개
게시글
질문&답변
2021.02.22
Fragment UserViewFragment{755083c (97350660-0d15-4791-b814-9fd04e9c5cc3)} not attached to a context 오류문의
저는 override fun onDestroy() { super.onDestroy() registration!!.remove()} 이렇게 사용하고 있습니다~ 액티비티나 프래그먼트의 생애주기에 따라 화면이 사라지는 부분에서 remove를 해주면 됩니다 registration은 var registration: ListenerRegistration? = null 이렇게 전역으로 선언하고 스냅샷으로 사용하면 됩니다 registration = firestore!!.collection("reunions").document(reunionUid).addSnapshotListener { value, error -> if (value == null) return@addSnapshotListener reunionDTO = value.toObject(ReunionDTO::class.java)!}
- 2
- 7
- 341
질문&답변
2020.10.11
완강했습니다!
감사합니다!
- 0
- 2
- 142
질문&답변
2020.10.11
Fragment UserViewFragment{755083c (97350660-0d15-4791-b814-9fd04e9c5cc3)} not attached to a context 오류문의
감사합니다!
- 2
- 7
- 341
질문&답변
2020.10.05
Fragment UserViewFragment{755083c (97350660-0d15-4791-b814-9fd04e9c5cc3)} not attached to a context 오류문의
어느 부분에서 remove를 시켜주어야 하는 건가요??
- 2
- 7
- 341
질문&답변
2020.09.27
glide load에는 이미지url이 들어가야되는것 아닌가요?
이거 이미지 업로드 할 때 addOnSuccessListener가 아니라 addOnCompleteListener써서 그래요. addOnSuccessListener 쓰면 Store Url 들어갑니다
- 1
- 3
- 178