[TIMOB-8385] Android:Orientation -v8: Splash Screen is not appearing On Device when in Landscape mode
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-06-07T21:28:14.000+0000 |
Affected Version/s | Release 2.0.0 |
Fix Version/s | n/a |
Components | Android |
Labels | qe-and031912 |
Reporter | Neha Chhabra |
Assignee | Eric Merriman |
Created | 2012-03-29T04:16:36.000+0000 |
Updated | 2017-06-07T21:28:14.000+0000 |
Description
Splash Screen is not appearing On Device in landscape mode
Steps To Reproduce:
1. Launch app in landscape mode
app.js
var win = Ti.UI.createWindow({
backgroundColor: 'white'
});
win.orientationModes = [Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT,Ti.UI.PORTRAIT,Ti.UI.UPSIDE_PORTRAIT];
var label = Ti.UI.createLabel({
text: 'Hello!',
color: 'red',
height: 'auto',
width: 'auto'
});
win.add(label);
win.open();
Expected Result:Splash screen should appear in portrait mode, but the app.js screen should appear in landscape mode
Actual Result: 1. Splash screen is not appearing in landscape mode, but appeared in potrait mode.
2. On Android tab, the splash screen shows up in both the modes
Closing ticket due to lack of activity and time passed.