Since updating to 3.2.x some windows won't close properly.
Either by overriding the 'android:back' event or programmatically closing the window.
The window appears to close, and if I call .hide() before it hides, but then a weird small looking black window appears and it shows my app icon and a bit of action bar in the middle see screenshot.
I am closing the window like this:
var lastWindow = this.windowStack.pop();
if (this.navGroup) {
this.navGroup.closeWindow(lastWindow);
} else {
lastWindow.hide();
lastWindow.close({animated:false});
}
There is no navGroup so the else {} is run.
As you can see, I've also tried to hide() just before and I've tried passing {animated:false}. But it still happens.
Any ideas? (Happens in all my Android devices, screenshot is from Google Nexus running all the latest Android updates).
