gpt4 book ai didi

android - 此字段泄漏上下文对象

转载 作者:行者123 更新时间:2023-12-04 20:03:40 26 4
gpt4 key购买 nike

我在非 Activity 中使用 Context 对象,它运行良好,但问题是它显示警告

那就是我使用上下文对象的地方
enter image description here

这是检查的结果
enter image description here

最佳答案

您可以使用WeakReferences对于这种情况。像这样的东西:

public class ContactsTask {

private WeakReference<Context> weakContext;

public ContactsTask(Context context){
weakContext = new WeakReference<>(context);
}

public void doSomething(){
if (weakContext!=null) weakContext.get() ... //return context without leaks
}

}

关于android - 此字段泄漏上下文对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48381818/

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