GitHub Issue | n/a |
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-07-11T17:51:23.000+0000 |
Affected Version/s | Release 2.1.1, Release 2.1.2 |
Fix Version/s | n/a |
Components | Android |
Labels | core, qe-and070112, qe-and082012, qe-newKS |
Reporter | Rima Umbrasas |
Assignee | Eric Merriman |
Created | 2012-08-01T16:20:48.000+0000 |
Updated | 2017-07-11T17:51:35.000+0000 |
Description:
Two labels disappear after changing device mode to landscape in "Horizontal Layout".
This occurs only on LG VS910 4G (2.3.6) phone.
Steps:
1. Run Refactored KitchenSink in portrait mode.
2. In "Base UI" module press on "Horizontal Layout".
3. After three labels are displayed turn device on landscape mode.
Expected results:
Three labels visible on the screen.
Actual results:
Only third label is visible.
Occurs on: Titanium Studio, build: 2.1.2.201208192014 SDK version: 2.1.2.v20120816171609 Devices: Motorola Droid (2.2.3) LG VS910 4G (2.3.6)
Does not occur on Samsung Galaxy S2 Android 2.3.6
This can also be reproduced by displaying just one line of text like this in Kitchen Sink:
function horizontal_layout() { var win = Ti.UI.createWindow(); var view = Ti.UI.createView({ height:300, width:320, layout:'horizontal' }); win.add(view); var l3 = Ti.UI.createLabel({ text:'I am the third label', left:2, width:'auto', height:20 }); view.add(l3); return win; }; module.exports = horizontal_layout;
This is probably an Android layout issue, and doesn't appear to be a bug with kitchen sink code
Closing ticket as invalid as this version of Kitchen Sink is no longer supported, we now have a new version.