You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to know the performance compare between contour vs constraintLayout. I have seen in some places that if a simple layout uses constraintLayout, it will not be faster than using frameLayout or linearLayout, so contour?
The text was updated successfully, but these errors were encountered:
We don't have any performance benchmarks presently and probably should - but yes different layouts will perform differently. FrameLayout will probably be fastest because it is the simplest layout, and layout performance is always going to align pretty closely with view complexity. Typically as long as you don't build super nested layouts you'll be ok.
I want to know the performance compare between
contour
vsconstraintLayout
. I have seen in some places that if a simple layout usesconstraintLayout
, it will not be faster than usingframeLayout
orlinearLayout
, socontour
?The text was updated successfully, but these errors were encountered: