我正在使用tabBar。我已经在一个窗口中添加了一个tableView,现在我想在窗口底部添加一个视图(而不是在表行的末尾)。它应该始终显示在底部。有什么建议吗?
答案 0 :(得分:1)
在tableview下创建一些空间,然后向窗口添加单独的视图
这是一个例子:
var mainWindow = Ti.UI.createWindow({});
//This creates a tableview with a 100 pixel gap at the bottom of the window
var tableview = Titanium.UI.createTableView({top:0,left:0,right:0,bottom:100,backgroundColor:'green'});
//This adds the tableview to the mainWindow
mainWindow.add(tableview);
//This adds the view at the bottom of the screen that wont scroll and always stays fixed to the bottom
var bottomView = Titanium.UI.createView({bottom:0,left:0,right:0,height:100,backgroundColor:'red'});
//This adds the bottomView to the mainWindow
mainWindow.add(bottomView);