Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-25410] Android: ContentHeight set to auto positions a view with bottom zero at the top of a scrollview

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2017-10-23T22:30:37.000+0000
Affected Version/sRelease 6.3.0
Fix Version/sRelease 6.3.0
ComponentsAndroid
Labelsqe-6.3.0, regression
ReporterLokesh Choudhary
AssigneeJoshua Quick
Created2017-10-18T23:05:08.000+0000
Updated2017-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.

Actual results:

The green label is at the top of ScrollView.

Expected results:

The green label should be at the bottom of the ScrollView.

Work-Around:

Set the ScrollView.contentHeight to Ti.UI.FILL

Comments

  1. Joshua Quick 2017-10-23

    PR (6.3.x): https://github.com/appcelerator/titanium_mobile/pull/9543 PR (master): https://github.com/appcelerator/titanium_mobile/pull/9545
  2. Lokesh Choudhary 2017-10-23

    FR Passed for both PR's. Master merged, waiting for merge to get enabled for 6.3.0.
  3. Lokesh Choudhary 2017-10-26

    PR for backport merged.
  4. Lokesh Choudhary 2017-10-26

    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

JSON Source