Reproduce Step:
1. Run the following code in a classic project.
var tourWindow = Ti.UI.createWindow({});
var contain0 = Ti.UI.createView({
width:'80%',
height:Ti.UI.SIZE,
layout:'vertical'
});
var hdrWelcome = Ti.UI.createImageView({
image:'hdr-welcome.png'
});
var btnGroup = Ti.UI.createView({
width:Ti.UI.FILL,
height:Ti.UI.SIZE,
borderColor:'yellow'
});
var quickTourBtn = Ti.UI.createButton({
title:'quick tour',top:20,left:0,width:'50%',height:50,color:'white',textAlign:'center'
});
var skipBtn = Ti.UI.createButton({
title:'skip',top:20,right:0,width:'50%',height:50,color:'white',textAlign:'center'
});
btnGroup.add(quickTourBtn,skipBtn);
contain0.add(hdrWelcome,btnGroup);
tourWindow.add(contain0);
tourWindow.open();
Problem.
1. Run on iOS, it works well as expected (attached screen shot).
2. Run on Android, it does not work well as expected (attached screen shot).
Closing as invalid, after [~sliang] confirmed that the provided solution is the proper way to go here.