I'm having a display problem when I try to add a View with 100% height in Titanium - it appears correctly on Android but not on iOS. Here's a simplified code:

Ti.UI.setBackgroundColor('#000');

var win = Ti.UI.createWindow({  
    title:'win',
    backgroundColor:'#fff'
});

var s = Ti.UI.createView({
    width:'100%',
    height:'100%',
    backgroundColor:'red',
    layout: 'horizontal'
});

var r = Ti.UI.createView({
    backgroundColor:'yellow',
    width:300,
    height:'100%' // problem
})

s.add(r);

win.add(s);
win.open();

Result on Android (correct): Android

Result on iPad: iPad

It does work if I set the height to a finite number, but I want the view to cover the entire height. How can I accomplish this, and why doesn't 100% height work on iOS?

link|improve this question

please note, the titanium platform is not meant for building the app just once. The best way to build apps is build 1 backend, and for both platforms create a different UI so it fits the purpose of the OS better. For doing this on an iPad, you could also use splitwindow: developer.appcelerator.com/apidoc/mobile/latest/… – Topener Nov 11 '11 at 13:17
feedback

1 Answer

up vote 1 down vote accepted

It probably has to do with adding a view to a view. If you add the yellow view to the window, and give zIndex to the both views, it works correctly.

For aligning it left, you should use left: 0;, not layout: 'horizontal' as according to the documentation the layout property does not exists: http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.Window-object

var s = Ti.UI.createView({
    width:'100%',
    height:'100%',
    backgroundColor:'red',
    zIndex: 1
});

var r = Ti.UI.createView({
    backgroundColor:'yellow',
    width:300,
    height:'100%', // no problem
    zIndex: 2,
    left: 0
});

win.add(r);
link|improve this answer
The yellow view appears in the center with your suggestion. If I add a layout:'horizontal' to the window nothing shows up. – lzm Nov 11 '11 at 13:05
add: left: 0, or right of you will. On default, it centers the view or whatever you add. With css style top/bottom/left/right you can position it correctly. This is both with height and width the case – Topener Nov 11 '11 at 13:09
Also, the layout property does not show up on the documentation: developer.appcelerator.com/apidoc/mobile/latest/…;. I updated my post to suit this question too – Topener Nov 11 '11 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.