gpt4 book ai didi

java - Firebase 快照监听器 : Glide Illegal Argument Exception on Activity Destroyed (Java)

转载 作者:行者123 更新时间:2023-12-01 19:29:51 25 4
gpt4 key购买 nike

我在适配器上使用 firebase 快照监听器。并且,每当值更新时,适配器就会更新。但问题是,即使 Activity 被销毁,它也会尝试更新。
它在 Glide.with(holder.itemView.getContext()) 处崩溃,错误为您无法为已销毁的 Activity 启动加载

是的,stackoverflow 上有很多相关问题。其中大部分在适配器中是不可能的。我还在我的 fragment 上尝试了 recyclerView.setAdapter(null)recyclerView.removeAllViewsInLayout() 但没有一个起作用。

简化的适配器代码

 @Override
protected void onBindViewHolder(@NonNull final ChatHolder holder, int position, @NonNull final MessageClass model) {

final FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();


firebaseFirestore.collection("users").document(model.getUser_receiver())
.addSnapshotListener(new EventListener<DocumentSnapshot>() {
@Override
public void onEvent(@Nullable DocumentSnapshot queryDocumentSnapshots, @Nullable FirebaseFirestoreException e) {
if (queryDocumentSnapshots != null) {

ProfileClass profileClass = queryDocumentSnapshots.toObject(ProfileClass.class);
String userId = queryDocumentSnapshots.getString("user_uid");

if(userId != null) {

if (profileClass.getUser_image().equals("image")) {
Glide.with(holder.itemView.getContext()).load(R.drawable.profile_image).into(holder.roundedImageViewChatsItemChatsImage);

} else {
Glide.with(holder.itemView.getContext()).load(profileClass.getUser_image()).into(holder.roundedImageViewChatsItemChatsImage);

}
}
}

}

});

日志

Java.lang.IllegalArgumentException: 
at com.bumptech.glide.manager.RequestManagerRetriever.assertNotDestroyed
(RequestManagerRetriever.java:323)
at com.bumptech.glide.manager.RequestManagerRetriever.get (RequestManagerRetriever.java:132)
at com.bumptech.glide.manager.RequestManagerRetriever.get (RequestManagerRetriever.java:116)
at com.bumptech.glide.Glide.with (Glide.java:707)
at com.meeti.all.Chats.ChatsFirestore$1.onEvent (ChatsFirestore.java:111)
at com.meeti.all.Chats.ChatsFirestore$1.onEvent (ChatsFirestore.java:64)
at com.google.firebase.firestore.DocumentReference.zza (SourceFile:497)
at com.google.firebase.firestore.zzd.onEvent (Unknown Source:6)
at com.google.firebase.firestore.g.zzh.zza (SourceFile:28)
at com.google.firebase.firestore.g.zzi.run (Unknown Source:6)
at android.os.Handler.handleCallback (Handler.java:873)
at android.os.Handler.dispatchMessage (Handler.java:99)
at android.os.Looper.loop (Looper.java:201)
at android.app.ActivityThread.main (ActivityThread.java:6823)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:547)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:873)

我为此苦苦思索了一个星期。
请帮忙。
谢谢

最佳答案

您正在从 itemView 请求上下文,但对于异步调用,您应该使用应用程序上下文,因为在执行该异步调用后 View /fragment 的上下文可能不可用(在您的情况下)滑动图像加载请求)。

要解决此问题,只需替换

holder.itemView.getContext() 

holder.itemView.getContext().getApplicationContext()

关于java - Firebase 快照监听器 : Glide Illegal Argument Exception on Activity Destroyed (Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60091346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com