You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2017. It is now read-only.
I see that in the android it doesn't really display the loading image when it's shows for the second or more time.
What i did to fix this was when the show function is called, i call the method the TiLoad.spinner.start() only for android.
Hi there,
I see that in the android it doesn't really display the loading image when it's shows for the second or more time.
What i did to fix this was when the show function is called, i call the method the TiLoad.spinner.start() only for android.
The code would be like this:
show: function() {
if(!TiLoad.visible) {
TiLoad.size();
TiLoad.visible = true;
TiLoad.window.open(TiLoad.animOpen);
if(Ti.Platform.osname == "android")
TiLoad.spinner.start();
};
}
What I use:
Greetz,
Sky Tang