From e43b85cb36be6d95e737c4bed632da65e5668ea4 Mon Sep 17 00:00:00 2001 From: Michael Gangolf Date: Sat, 30 Dec 2023 22:35:27 +0100 Subject: [PATCH] fix(android): append ListView events while scrolling --- .../ti/modules/titanium/ui/widget/listview/ListItemProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/modules/ui/src/java/ti/modules/titanium/ui/widget/listview/ListItemProxy.java b/android/modules/ui/src/java/ti/modules/titanium/ui/widget/listview/ListItemProxy.java index 491454559a6..3ddca95da66 100644 --- a/android/modules/ui/src/java/ti/modules/titanium/ui/widget/listview/ListItemProxy.java +++ b/android/modules/ui/src/java/ti/modules/titanium/ui/widget/listview/ListItemProxy.java @@ -355,7 +355,7 @@ public void moveChildrenTo(ListItemProxy proxy) proxy.loadTemplate(); proxy.copyChildPropertiesTo(childProxies, proxy.template); proxy.add(childProxies); - + proxy.addTemplateEventListeners(proxy, this.template); // Now that this proxy has no children, release this proxy's 1 native view container. // We do this to reduce memory footprint of all offscreen list items. releaseViews();