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
Optimize LazyLayout item block skipping when key didn't change
It required some experimental api changes:
Remove LazyLayoutIntervalContent<T>.PinnableItem(). This abstraction doesn't help much and makes it harder to get optimizations so I refactored it by removing the function and exposing LazyLayoutIntervalContent.withInterval() instead.
Item function in LazyLayoutItemProvider now accepts key in addition to index. It allows us to only get the key once instead of doing it twice on different levels.
Relnote: Experimental API LazyLayoutIntervalContent now has withInterval() function. LazyLayoutIntervalContent<T>.PinnableItem() was removed. Item function in LazyLayoutItemProvider not has key as a second param.
Test: LazyLayoutTest
Change-Id: Ia8e2f02317a1740281257cb413a314a7089fb331
method public abstract androidx.compose.foundation.lazy.layout.IntervalList<Interval> getIntervals();
778
778
method public final int getItemCount();
779
779
method public final Object getKey(int index);
780
+
method public final inline <T> T withInterval(int globalIndex, kotlin.jvm.functions.Function2<? super java.lang.Integer,? super Interval,? extends T> block);
780
781
property public abstract androidx.compose.foundation.lazy.layout.IntervalList<Interval> intervals;
property public default kotlin.jvm.functions.Function1<java.lang.Integer,java.lang.Object> type;
789
790
}
790
791
791
-
public final class LazyLayoutIntervalContentKt {
792
-
method @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Composable public static <T extends androidx.compose.foundation.lazy.layout.LazyLayoutIntervalContent.Interval> void PinnableItem(androidx.compose.foundation.lazy.layout.LazyLayoutIntervalContent<T>, int index, androidx.compose.foundation.lazy.layout.LazyLayoutPinnedItemList pinnedItemList, kotlin.jvm.functions.Function2<? super T,? super java.lang.Integer,kotlin.Unit> content);
793
-
}
794
-
795
792
@androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Stable public interface LazyLayoutItemProvider {
796
-
method @androidx.compose.runtime.Composable public void Item(int index);
793
+
method @androidx.compose.runtime.Composable public void Item(int index, Object key);
797
794
method public default Object? getContentType(int index);
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/lazy/layout/LazyLayoutStateRestorationTest.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ class LazyLayoutStateRestorationTest {
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/lazy/layout/LazyLayoutTest.kt
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/LazyListItemProvider.kt
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/grid/LazyGridItemProvider.kt
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/layout/LazyLayoutIntervalContent.kt
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/layout/LazyLayoutItemContentFactory.kt
+16-9
Original file line number
Diff line number
Diff line change
@@ -99,9 +99,12 @@ internal class LazyLayoutItemContentFactory(
99
99
val indexIsUpToDate =
100
100
index < itemProvider.itemCount && itemProvider.getKey(index) == key
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/layout/LazyLayoutItemProvider.kt
Copy file name to clipboardexpand all lines: compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/staggeredgrid/LazyStaggeredGridItemProvider.kt
0 commit comments