Since shortly my acativityindicator does not hide on xhr.onload. This works fine with iPhone but not anymore on Android. I have to go back to close the activity window. I tried several scripts but the only solution was a time based hide function.
...
info.show();
// Ti.App.fireEvent('show_indicator');
var json;
var xhr = Ti.Network.createHTTPClient({});
xhr.timeout = 10000;
xhr.onload = function() {
// Ti.App.fireEvent('hide_indicator');
Ti.API.info('info.hide');
setTimeout(function(){
info.hide();
}, 500);