Steps to reproduce:
1. Use the code below in your app.js & build for android device emulator using SDK 6.2.0.v20170714101430.
var win1 = Ti.UI.createWindow({
backgroundColor: 'blue',
title: 'Blue'
});
win1.add(Ti.UI.createLabel({text: 'I am a blue window.'}));
var win2 = Ti.UI.createWindow({
backgroundColor: 'red',
title: 'Red'
});
win2.add(Ti.UI.createLabel({text: 'I am a red window.'}));
var tab1 = Ti.UI.createTab({
window: win1,
title: 'Blue'
}),
tab2 = Ti.UI.createTab({
window: win2,
title: 'Red'
}),
tabGroup = Ti.UI.createTabGroup({
tabs: [tab1, tab2]
});
tabGroup.open();
Actual Results:
1. No tabgroup opens after the splash screen.
2. We see error:
[ERROR] : [Pixel] TabGroupProxy: (main) [91,91] ActionBar not available for TabGroup
[ERROR] : [Nexus 5] TabGroupProxy: (main) [113,113] ActionBar not available for TabGroup
Expected Results:
1. Tab group should open successfully.
Thanks for checking [~ybanev], [~lmorris]. I am not seeing it too.
By the error message I assume the app was using a custom theme with a disabled action bar. Closing it as a duplicate.