Android View.postDelayed泄漏引用吗?

前端之家收集整理的这篇文章主要介绍了Android View.postDelayed泄漏引用吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想知道当视图与父视图分离时,传递给View.postDelayed的runnable是否会被自动删除.

我查看了View类的源代码,它被发布到一些处理程序,它出来了.但该处理程序的生命周期尚不清楚.

有人知道答案吗?

最佳答案

I wonder if runnable passed to View.postDelayed will be automatically
removed when the view is detached from the parent.

它将在run方法完成后执行.如果你有一个无限循环,它将永远不会被删除,因此,你将泄漏视图,以及使用该视图的Activity

原文链接:https://www.f2er.com/android/430069.html

猜你在找的Android相关文章