我有一个布局的视图vertical
var tray = Ti.UI.createView({
width:deviceWidth * 0.9,
height:'100%',
top:0,
left:0,
backgroundColor:'transparent',
layout:'vertical'
});
win.add(tray);
里面tray
我有一个TableView
和一个Toolbar
var slideList = Ti.UI.createTableView({
width:deviceWidth * 0.9,
height:xxx, //--> Need to know what to do here
top:0,
left:0,
search:searchList,
filterAttribute:'searchFilter',
backgroundColor:(Ti.Platform.osname == 'android') ? '#000000' : '#ffffff'
});
tray.add(slideList);
var iOSControls = Ti.UI.iOS.createToolbar({
items:[flexSpace,backBtn,flexSpace,playBtn,flexSpace,linkBtn,flexSpace],
bottom:0,
borderTop:false,
borderBottom:true,
barColor:'#000'
});
tray.add(iOSControls);
我不完全确定如何调整TableView
sheight
属性的大小,使其填充高度tray
减去iOSControls
. 任何想法将不胜感激..谢谢