when i switch between different windows in the Android App sometimes the view in the window become invisible. There are no any errors in the code.
sample code
next.addEventListener('click', function() {
var childWin = Titanium.UI.createWindow({
url : 'HomePage.js'
});
childWin.open({
fullscreen : true,
navBarHidden : true,
activityEnterAnimation : Ti.Android.R.anim.fade_in,
exitOnClose:true,
});
});
and from Home page to go to next window the code is like this
login.addEventListener('click', function() {
var childWin = Titanium.UI.createWindow({
url : 'LoginPage.js'
});
childWin.open({
fullscreen : true,
navBarHidden : true,
activityEnterAnimation : Ti.Android.R.anim.fade_in,
exitOnClose:true,
});
});
after loading login page and opening 5 to 6 other windows the view in the HomePage will disappear what would be the problem.?