Open
Conversation
这样就可以在用到浮动框的地方才去创建浮动框。 解决必须在Application中创建浮动框,否则会出问题的bug。 在Applicaion中先注册生命周期:FloatWindow.initLifecycle(this);
Author
|
麻烦审阅代码和验证 |
优化浮框消耗时的内存泄漏
解决浮框销毁的内存泄漏
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
这样就可以在用到浮动框的地方才去创建浮动框。
解决必须在Application中创建浮动框,否则会出问题的bug。
在Applicaion中先注册生命周期:FloatWindow.initLifecycle(this);
西瓜智选股有采用这个库,接入时我们是在Activity中取创建浮层,发现实现不了文档所说的指定页面显示浮层,经过调试发现在Activity中创建浮层会出现生命周期问题,所有我把生命周期注册的代码分离了下,改动非常小。