gpt4 book ai didi

android - 在自定义 View 中创建线程会泄漏内存?

转载 作者:行者123 更新时间:2023-11-30 00:52:24 24 4
gpt4 key购买 nike

public class CustomView extends View{
public CustomView (Context context) {
super(context);
}
public CustomView (Context context, AttributeSet attrs) {
super(context, attrs);
new Thread(){
@Override
public void run() {
while(true){
//dosomething;
}
}
}.start();
}
}

当屏幕配置更改或其他事情时,是否会泄漏内存?
如果会,我该怎么办?谢谢。

最佳答案

When the screen config change or other things , it will be leak memory?

它会,因为无限循环。

how should I do

你必须强制你的线程终止是 run 方法。例如,您可以设置一个 boolean 将在此期间进行评估,并强制执行此 boolean onDetachedFromWindow

关于android - 在自定义 View 中创建线程会泄漏内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40760809/

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