[TIMOB-25410] Android: ContentHeight set to auto positions a view with bottom zero at the top of a scrollview
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2017-10-23T22:30:37.000+0000 |
Affected Version/s | Release 6.3.0 |
Fix Version/s | Release 6.3.0 |
Components | Android |
Labels | qe-6.3.0, regression |
Reporter | Lokesh Choudhary |
Assignee | Joshua Quick |
Created | 2017-10-18T23:05:08.000+0000 |
Updated | 2017-10-26T22:10:54.000+0000 |
Description
*This is a regression. Not seen with 6.2.2.GA*
Steps to reproduce:
1. Use the below code in your app.js:
var win = Ti.UI.createWindow();
var hull = Ti.UI.createScrollView({
width: '100%',
height: '100%',
backgroundColor: 'blue',
// contentHeight: Ti.UI.FILL,
});
var fixedView = Ti.UI.createView({
width: '100%',
height: 30,
bottom: 0, //this does not work in Android
backgroundColor: 'green',
});
var label1 = Titanium.UI.createLabel({
color: '#999',
text: 'I am footer',
font: {
fontSize: 20,
fontFamily: 'Helvetica Neue'
},
width: 'auto',
bottom: 0
});
fixedView.add(label1);
hull.add(fixedView);
win.add(hull);
win.open();
2. Build for android device/emulator.
PR (6.3.x): https://github.com/appcelerator/titanium_mobile/pull/9543 PR (master): https://github.com/appcelerator/titanium_mobile/pull/9545
FR Passed for both PR's. Master merged, waiting for merge to get enabled for 6.3.0.
PR for backport merged.
Verified the fix in SDK 6.3.0.v20171026120401 & 7.0.0.v20171025141436. Closing. Studio Ver: 4.10.0.201709271713 OS Ver: 10.12.3 Xcode Ver: Xcode 8.3.3 Appc NPM: 4.2.10-2 Appc CLI: 6.3.0-master.15 Ti CLI Ver: 5.0.14 Alloy Ver: 1.10.6 Node Ver: 7.10.1 Java Ver: 1.8.0_101 Devices: ⇨ google Nexus 5 — Android 6.0.1 ⇨ google Pixel — Android 7.1.1