如何知道布局何时绘制?
我有一个自定义视图,可以将可滚动位图绘制到屏幕上。为了初始化它,我需要传入父布局对象的大小(以像素为单位)。但在 onCreate 和 onResume 函数期间,布局尚未绘制,因此 layout.getMeasuredHeight() 返回 0。
作为解决方法,我添加了一个处理程序来等待一秒钟,然后进行测量。这可行,但很草率,我不知道在绘制布局之前我可以削减多少时间。
我想知道的是,如何检测布局何时绘制?有事件或回调吗?
I have a custom view that draws a scrollable bitmap to the screen. In order to initialize it, i need to pass in the size in pixels of the parent layout object. But during the onCreate and onResume functions, the Layout has not been drawn yet, and so layout.getMeasuredHeight() returns 0.
As a workaround, i have added a handler to wait one second and then measure. This works, but its sloppy, and I have no idea how much i can trim the time before I end up before the layout gets drawn.
What I want to know is, how can I detect when a layout gets drawn? Is there an event or callback?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
您可以将树观察器添加到布局中。这应该返回正确的宽度和高度。
onCreate()
在子视图布局完成之前调用。所以宽度和高度还没有计算出来。要获取高度和宽度,请将其放在onCreate()
方法中:You can add a tree observer to the layout. This should return the correct width and height.
onCreate()
is called before the layout of the child views are done. So the width and height is not calculated yet. To get the height and width, put this on theonCreate()
method:一个非常简单的方法是简单地在布局上调用
post()
。创建视图后,这将在下一步运行您的代码。A really easy way is to simply call
post()
on your layout. This will run your code the next step, after your view has already been created.为了避免不推荐使用的代码和警告,您可以使用:
To avoid deprecated code and warnings you can use:
androidx.core-ktx 已经有这个
androidx.core-ktx already has this
更好地使用 kotlin 扩展函数
Better with kotlin extension functions
通常方法的替代方法是挂钩视图的绘制。
OnPreDrawListener
在显示视图时被多次调用,因此没有特定的迭代使您的视图具有有效的测量宽度或高度。这要求您不断验证 (view.getMeasuredWidth() <= 0
) 或设置检查measuredWidth
是否大于零的次数限制。还有可能永远不会绘制视图,这可能表明您的代码存在其他问题。
An alternative to the usual methods is to hook into the drawing of the view.
OnPreDrawListener
is called many times when displaying a view, so there is no specific iteration where your view has valid measured width or height. This requires that you continually verify (view.getMeasuredWidth() <= 0
) or set a limit to the number of times you check for ameasuredWidth
greater than zero.There is also a chance that the view will never be drawn, which may indicate other problems with your code.
最优雅的方法是使用
OneShotPreDrawListener
。OneShotPreDrawListener
将注册一个回调,在即将绘制视图树时调用,并且在一次OnPreDraw
调用后它将自行删除。The most elegant way to do this is using
OneShotPreDrawListener
. AnOneShotPreDrawListener
will register a callback to be invoked when the view tree is about to be drawn and it will remove itself after oneOnPreDraw
call.另一个答案是:
尝试在
onWindowFocusChanged
处检查视图尺寸。Another answer is:
Try checking the View dimensions at
onWindowFocusChanged
.如果您使用 kotlin 文档,我建议您使用 doOnLayout
:
布局此视图时执行给定的操作
I recommend you to use doOnLayout if you're using kotlin
doc:
Performs the given action when this view is laid out
当调用
onMeasure
时,视图将获取其测量的宽度/高度。之后,您可以调用layout.getMeasuredHeight()
。When
onMeasure
is called the view gets its measured width/height. After this, you can calllayout.getMeasuredHeight()
.我创建静态变量来检查布局是否已经绘制。如果它已创建,您只需调用绘制的函数即可。
I create the static variable to check if the layout was already drawn. If it was created you can simply call the function that draws.
view.post { TODO("尚未实现") }
view.post { TODO("Not yet implemented") }