Hi,
I'm writing an android app using the tools I know best: html/css/js and a bit of Java.
I'm having 2 difficulties I can't seem to fix a.t.m.
1) tapping on a link (a ng-href style) fires a click event with a 300ms delay
2) pushing the hardware backbutton has a ~ 500ms delay
1) I've tested this with Android 4.4 on a HTC One and Android 4.3 on an Asus pad. Using the chrome remote debugging while using the HTC One I can see in the timeline tab that when I click a link the click event is fired and takes about 350ms to respond. Even though I have fastclick in the project and enabled (i think ... how can I verify this?)
2) The backbutton (and other native to javascript calls) tend to be slow; no idea on how to speed this up; If i tap the back button multiple times the whole routing flies into view (this is non-cached non-history data!) making me think that the javascript code is ok, but the native to js bridge is slow.
Any tips on how to speed these things up a bit?