I'm a bit confused about the roles of forceLayout()
, requestLayout()
and invalidate()
methods of the View
class.
When shall they be called?
I'm a bit confused about the roles of forceLayout()
, requestLayout()
and invalidate()
methods of the View
class.
When shall they be called?
To better understand answers provided by François BOURLIEUX and Dalvik I suggest you take a look at this awesome view lifecycle diagram by Arpit Mathur:
TextView
. I thought that maybe they want to draw the View
for the last time before they change its layout-related parameters, but it doesn't really make any sense if we think about those calls being invoked in the different order (and they call invalidate()
right after requestLayout()
in TextView
as well). Maybe it deserves another question on StackOverflow :)? –
Volz invalidate()
and requestLayout()
) properly. The purpose of those methods is to tell the View
what sort of invalidation (as you called it) has happened. It's not like the View
decides what path to follow after you call one of those methods. The logic behind choosing the View
-lifecycle-path is the choosing of the proper method to call itself. If there's something related to size change - requestLayout()
should be called, if there's only a visual change without a size changed - you should call invalidate()
. –
Volz View
in some way, e.g. you get current LayoutParams
of a View
and you modify them, but NOT call either requestLayout
or setLayoutParams
(which calls requestLayout
internally), then you can call invalidate()
as much as you want, and the View
will not go through the measure-layout process, therefore will not change its size. If you don't tell your View
that its size has changed (with a requestLayout
method call), then the View
will assume it didn't, and the onMeasure
and onLayout
won't be called. –
Volz requestLayout()
is not guaranteed to result in an onDraw
. –
Os invalidate()
Calling invalidate()
is done when you want to schedule a redraw of the view. It will result in onDraw
being called eventually (soon, but not immediately). An example of when a custom view would call it is when a text or background color property has changed.
The view will be redrawn but the size will not change.
requestLayout()
If something about your view changes that will affect the size, then you should call requestLayout()
. This will trigger onMeasure
and onLayout
not only for this view but all the way up the line for the parent views.
Calling requestLayout()
is not guaranteed to result in an onDraw
(contrary to what the diagram in the accepted answer implies), so it is usually combined with invalidate()
.
invalidate();
requestLayout();
An example of this is when a custom label has its text property changed. The label would change size and thus need to be remeasured and redrawn.
forceLayout()
When there is a requestLayout()
that is called on a parent view group, it does not necessary need to remeasure and relayout its child views. However, if a child should be included in the remeasure and relayout, then you can call forceLayout()
on the child. forceLayout()
only works on a child if it occurs in conjunction with a requestLayout()
on its direct parent. Calling forceLayout()
by itself will have no effect since it does not trigger a requestLayout()
up the view tree.
Read this Q&A for a more detailed description of forceLayout()
.
requestLayout()
before invalidate()
if you want. Neither one does a layout or draw immediately. Rather, they set flags that will eventually result in a relayout and redraw. –
Os Here you can find some response: http://developer.android.com/guide/topics/ui/how-android-draws.html
For me a call to invalidate()
only refreshes the view and a call to requestLayout()
refreshes the view and compute the size of the view on the screen.
invalidate()
---> onDraw()
from UI thread
postInvalidate()
---> onDraw()
from background thread
requestLayout()
---> onMeasure()
and onLayout()
AND NOT Necessarily onDraw()
forceLayout()
---> onMeasure()
and onLayout()
JUST IF the direct parent called requestLayout()
.
you use invalidate() on a view that you want to redraw, it'll make its onDraw(Canvas c) to invoked, and requestLayout() will make the whole layout rendering ( measurement phase and positioning phase) run again. You should use it if you are changing child view's size on runtime but only in particular cases like constraints from the parent view(by that I mean that the parent height or width are WRAP_CONTENT and so match measure the children before they can wrap them again)
This answer is not correct about forceLayout()
.
As you can see in the code of forceLayout()
it merely marks the view as "needs a relayout" but it does neither schedule nor trigger that relayout. The relayout will not happen until at some point in the future the view's parent was laid out for some other reason.
There is also a much bigger issue when using forceLayout()
and requestLayout()
:
Let's say you've called forceLayout()
on a view. Now when calling requestLayout()
on a descendent of that view, Android will recursively call requestLayout()
on that descendent's ancestors. The problem is that it will stop the recursion at the view on which you've called forceLayout()
. So the requestLayout()
call will never reach the view root and thus never schedule a layout pass. An entire subtree of the view hierarchy is waiting for a layout and calling requestLayout()
on any view of that subtree will not cause a layout. Only calling requestLayout()
on any view outside that subtree will break the spell.
I'd consider the implementation of forceLayout()
(and how it affects requestLayout()
to be broken and you should never use that function in your code.
View
and by running into the issue myself & debugging it. –
Klemens forceLayout()
API: it doesn't actually force a layout pass, rather it just changes a flag which is being observed in onMeasure()
, but onMeasure()
won't be called unless requestLayout()
or an explicit View#measure()
is called. That means, that forceLayout()
should be paired with requestLayout()
. On the other hand, why then to perform forceLayout()
if I still need to perform requestLayout()
? –
Alanna requestLayout()
does everything which forceLayout()
also does. –
Klemens forceLayout
might appropriately be used in code. –
Os forceLayout
makes sense. So in the end it's just very badly named and documented. –
Klemens © 2022 - 2024 — McMap. All rights reserved.