Closed sukima closed 11 years ago
The Ti.UI.Window object returned from Ti.UI.createWindow() does not include the android only property activity.
Ti.UI.Window
Ti.UI.createWindow()
activity
A workaround is to wrap the createWindow function and add it:
(function() { var origFn = Ti.UI.createWindow; Ti.UI.createWindow = function() { var win = origFn(arguments); win.activity = {}; return win; }; })();
thanks, I apparently just completely missed this issue
The
Ti.UI.Window
object returned fromTi.UI.createWindow()
does not include the android only propertyactivity
.A workaround is to wrap the createWindow function and add it: