1.4.Invalidate和postInvalidate
API的描述:Invalidate the whole view. If the view is visible, onDraw(Canvas) will be called at somepoint in the future. This must be called from a UI thread. To call from anon-UI thread, call postInvalidate()。
即,在UI线程的话可以直接调用invalidate去刷新布局,其他的非UI线程的话要去调用postInvalidete()。
Invalidate和postInvalidate
最新推荐文章于 2024-07-14 07:43:57 发布
本文详细介绍了Android中Invalidate与postInvalidate的区别及使用场景。指出在UI线程中,可直接调用invalidate刷新视图;而在非UI线程中,则需调用postInvalidate来实现同样的功能。
1624

被折叠的 条评论
为什么被折叠?



