I released my app and users are complaining that scrolling is very laggy.
I have only device with android 4.2 - can’t test on real device with 4.4.
So I can test on genymotion and I can confirm that scrolling (collection-repeat (height is set) with infinite-scroll) on 4.4 works worse than on 4.2
Is it known bug? Can anyone test it on 4.4? https://play.google.com/store/apps/details?id=pl.polskieszlaki.PolskieSzlaki - if You can tap “Atrakcje”
Edit: on genymotion android 5.0 it works even worse
Edit2
I’m testing now from fresh start using Your starter template:
ionic start test_app
ionic platform add android
- change
tab-dash.html
<ion-view view-title="Dashboard">
<ion-content scroll="true" class="padding">
<ion-list>
<ion-item collection-repeat="item in items">
{{item}}
</ion-item>
</ion-list>
</ion-content>
</ion-view>
- change
controllers.js
.controller('DashCtrl', function ($scope) {
$scope.items = [];
for (var i = 0; i < 1000; i++) $scope.items.push(i);
})
- start genymotion android 4.4.4 (Nexus 4) - very, very laggy
- start genymotion android 4.2.2 - works fine.
- Here is mine
ionic info
OS: Windows 8.1
Node Version: v0.12.2
Cordova CLI: 4.3.0
Ionic Version: 1.0.0-rc.4
Ionic CLI Version: 1.3.19