I am trying to run the ionic-angular-cordova-seed project on Android 4.3.1 using Cordoba. I noticed that page transitions (for example, clicking on a tab or list item) are very slow.
I tried disabling hardware acceleration using:
super.appView.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);
... and it worked perfectly. But then scrolling, sliding menu and more animation became very slow.
I tried FastClick, it didn't make any difference.
I found this CSS-based solution to this problem, but I am not familiar with Ionic enough to apply it on it. Any ideas?
Note. I do not use animations for page transitions.
source share