分离生命周期和创建浮动框,需要在Application中注册生命周期。 #111
Open
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中创建浮层会出现生命周期问题,所有我把生命周期注册的代码分离了下,改动非常小。