Fixed
Status Update
Comments
an...@google.com <an...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 35e722280155d3e6135d2a1f4f4ed6e0ef01314c
Author: Andrey Kulikov <andreykulikov@google.com>
Date: Mon May 17 16:58:01 2021
Remove inline from Modifier.onSizeChanged() and Modifier.onGloballyPositioned()
This allows us to make such modifier skippable. Currently if something triggers recomposition in the function invoking such modifiers those functions will always return a modifier which is not equals to the previous one, causing unnecessary recompositions and remeasurings.
Fixes: 188417479
Fixes: 186109675
Test: ./gradlew bOS
Relnote: Modifier.onSizeChanged() and Modifier.onGloballyPositioned() are not inlined functions anymore
Change-Id: I727f6622174806efb68b63808b322e6bc86e1cf5
M compose/ui/ui/api/1.0.0-beta08.txt
M compose/ui/ui/api/current.txt
M compose/ui/ui/api/public_plus_experimental_1.0.0-beta08.txt
M compose/ui/ui/api/public_plus_experimental_current.txt
M compose/ui/ui/api/restricted_1.0.0-beta08.txt
M compose/ui/ui/api/restricted_current.txt
M compose/ui/ui/src/androidAndroidTest/kotlin/androidx/compose/ui/layout/OnGloballyPositionedTest.kt
M compose/ui/ui/src/androidAndroidTest/kotlin/androidx/compose/ui/layout/OnSizeChangedTest.kt
M compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/OnGloballyPositionedModifier.kt
M compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/OnRemeasuredModifier.kt
https://android-review.googlesource.com/1708420
Branch: androidx-main
commit 35e722280155d3e6135d2a1f4f4ed6e0ef01314c
Author: Andrey Kulikov <andreykulikov@google.com>
Date: Mon May 17 16:58:01 2021
Remove inline from Modifier.onSizeChanged() and Modifier.onGloballyPositioned()
This allows us to make such modifier skippable. Currently if something triggers recomposition in the function invoking such modifiers those functions will always return a modifier which is not equals to the previous one, causing unnecessary recompositions and remeasurings.
Fixes: 188417479
Fixes: 186109675
Test: ./gradlew bOS
Relnote: Modifier.onSizeChanged() and Modifier.onGloballyPositioned() are not inlined functions anymore
Change-Id: I727f6622174806efb68b63808b322e6bc86e1cf5
M compose/ui/ui/api/1.0.0-beta08.txt
M compose/ui/ui/api/current.txt
M compose/ui/ui/api/public_plus_experimental_1.0.0-beta08.txt
M compose/ui/ui/api/public_plus_experimental_current.txt
M compose/ui/ui/api/restricted_1.0.0-beta08.txt
M compose/ui/ui/api/restricted_current.txt
M compose/ui/ui/src/androidAndroidTest/kotlin/androidx/compose/ui/layout/OnGloballyPositionedTest.kt
M compose/ui/ui/src/androidAndroidTest/kotlin/androidx/compose/ui/layout/OnSizeChangedTest.kt
M compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/OnGloballyPositionedModifier.kt
M compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/OnRemeasuredModifier.kt
Description
It seems that onGloballyPositioned always requests remeasurement on recomposition.
When setting a new modifier we are doing:
and here
addedCallback
will always be true, becauseModifier.onGloballyPositioned
is always creating a new object on recomposition. Fixing this might require an API change asonGloballyPositioned
is currently inline, so we cannot use the lambda instance to check for modifier equality across recomposition.